首頁 > 後端開發 > Golang > 如何使用字串切片將變數參數傳遞給 Go 中的 Sprintf?

如何使用字串切片將變數參數傳遞給 Go 中的 Sprintf?

Patricia Arquette
發布: 2024-10-29 00:40:02
原創
338 人瀏覽過

How to Pass Variable Parameters to Sprintf in Go with Slices of Strings?

在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中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板