所提供的Go 程式碼中的錯誤源自於處理位元組和字串型別時所需的顯式轉換。錯誤訊息「無效操作:new_str str[i 1](字串和位元組類型不符)」表示正在嘗試將底層的字串 (new_str) 與位元組 (str[i 1]) 連接起來str 陣列。
要解決此問題,必須對位元組類型進行明確轉換,將其轉換為字串。這可以透過使用string() 函數來實現,如更正後的程式碼所示:
<code class="go">func g(str string) string { var i = 0 var new_str = "" for i < len(str)-1 { // Convert the byte to a string before concatenation new_str = new_str + string(str[i+1]) i = i + 1 } return new_str }</code>
透過明確地將位元組轉換為字串,程式碼遵循Go 的型別系統並成功連接字符串,而無需遇到類型不符錯誤。
以上是如何解決 Golang 中的「類型不符:字串和位元組」錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!