假设我有两个文件。
package main
import "fmt"
type StringB string
func (s StringB) Greetings(){
fmt.Println(s)
}
go build hello.go bye.go
并像这样编译:
StringA
如何将StringB
投射到 plotOptions: {
line: {
dataLabels: {
enabled: true,
format: '${y:,.2f}'
}
}
}
类型?
由于
答案 0 :(得分:1)
您可以使用s0 := StringB(s)
在其他语言中构建器的方式,但这只是创建兼容类型的其他方式,例如[]byte("abc")
您的代码可能如下所示:
type StringA string
type StringB string
func (s StringB) Greetings(){
fmt.Println(s)
}
func main() {
var s StringA
s = "hello"
s0 := StringB(s)
s0.Greetings()
}