golang变量设置

我需要在程序包的开头设置一个变量,稍后将使用parseFiles()填充该变量,但是我不确定该如何设置变量,因为它不是字符串,int或诸如此类的任何泛型。我将如何设置变量而不必在其中添加一些任意名称来进行设置?


var templatefiles = template.New("foo") // Im having to do New("foo") just to set the variable


// Later on adding files to original variable

templatefiles.New("template name").Parse("Template text here")


萧十郎
浏览 176回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go