Go 中將自訂類型轉換為字串
在Go 中,程式設計師偶爾可能會遇到需要將自訂類型轉換為字串的場景細繩。考慮以下奇怪的範例,其中自訂類型本質上只是一個字串:
type CustomType string const ( Foobar CustomType = "somestring" ) func SomeFunction() string { return Foobar }
但是,嘗試編譯此程式碼將導致錯誤:"cannot use Foobar (type CustomType) as type string in return
要解決此問題並允許SomeFunction 傳回Foobar 的字串值,必須將自訂類型值明確轉換為字串。 string() 轉換函數來實現:
func SomeFunction() string { return string(Foobar) }
透過將 Foobar 值轉換為字串,SomeFunction 現在可以成功傳回所需的字串「somestring」。
以上是如何在 Go 中將自訂類型轉換為字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!