修正:Golang 中String 和Byte 類型不符
Golang 中,「無效操作:new_str str[i 1](類型不匹配)字串和位元組)”嘗試連接字串和位元組時會發生錯誤。需要明確轉換才能解決此問題。
問題出現在提供的程式碼片段中:
<code class="go">for i < len(str) - 1 { new_str = new_str + str[i + 1] i = i + 1 }</code>
要解決此問題,我們需要使用以下命令將str[i 1] 轉換為字串string() 函數:
<code class="go">for i < len(str) - 1 { new_str = new_str + string(str[i + 1]) i = i + 1 }</code>
第24 行出現類似的問題。為了解決它,我們應用相同的轉換:
<code class="go">return f(g(str)) + string(str[0])</code>
這些修復後,程式碼將運行正確並正確連接字串。
以上是如何解決 Golang 中的「字串和位元組類型不符」錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!