在Go 中將變數參數傳遞給Sprintf
在Go 中,Sprintf 函數預期其變數參數為[]interface{} 類型。在處理其他類型的切片(例如 []string)時,這可能是一個限制。
考慮以下程式碼,它嘗試將字串切片傳遞給Sprintf:
<code class="go">s := []string{"a", "b", "c", "d"} fmt.Printf("%5s %4s %3s\n", s[1], s[2], s[3])</code>
執行此程式碼將導致以下錯誤:
cannot use v (type []string) as type []interface {} in argument to fmt.Printf
要解決此錯誤,必須將切片轉換為[]interface{} 類型。這可以手動完成,如下所示:
<code class="go">ss := []string{"a", "b", "c"} is := make([]interface{}, len(ss)) for i, v := range ss { is[i] = v }</code>
或者,可以從一開始就將字串切片聲明為[]interface{}:
<code class="go">is := []interface{}{"a", "b", "c"}</code>
使用切片轉換為正確的類型後,Sprintf 現在可用於格式化變數參數:
<code class="go">fmt.Printf("%5s %4s %3s\n", is[1], is[2], is[3])</code>
輸出:
b c d
透過將字串切片轉換為[]interface{},可以方便地向Sprintf 傳遞多個參數。
以上是如何使用字串切片將變數參數傳遞給 Go 中的 Sprintf?的詳細內容。更多資訊請關注PHP中文網其他相關文章!