TypeOf Without an Instance: Lulus Hasil kepada Fungsi
In Go, adalah mungkin untuk mendapatkan "Type" tanpa mempunyai instance daripada jenis itu. Ini boleh dicapai melalui penggunaan reflect.TypeOf(), tetapi biasanya contoh melibatkan contoh.
Mendapatkan Jenis Tanpa Contoh
Untuk memperoleh "Jenis" tanpa satu contoh, silap mata adalah untuk memulakan dengan penunjuk kepada jenis, yang boleh diberikan nol "ditaip". Selepas itu, .Elem() boleh digunakan untuk mendapatkan reflect.Type deskriptor jenis runcing, dikenali sebagai jenis asas.
<code class="go">t := reflect.TypeOf((*int)(nil)).Elem() fmt.Println(t) t = reflect.TypeOf((*http.Request)(nil)).Elem() fmt.Println(t) t = reflect.TypeOf((*os.File)(nil)).Elem() fmt.Println(t)</code>
Contoh Output:
int http.Request os.File
Melalui Jenis Sekitar
Jika anda perlu menyampaikan jenis dan menggunakannya dalam suis, cipta dan simpannya dalam pembolehubah global untuk rujukan:
<code class="go">var ( intType = reflect.TypeOf((*int)(nil)) httpRequestType = reflect.TypeOf((*http.Request)(nil)) osFileType = reflect.TypeOf((*os.File)(nil)) int64Type = reflect.TypeOf((*uint64)(nil)) ) func printType(t reflect.Type) { switch t { case intType: fmt.Println("Type: int") case httpRequestType: fmt.Println("Type: http.request") case osFileType: fmt.Println("Type: os.file") case int64Type: fmt.Println("Type: uint64") default: fmt.Println("Type: Other") } } func main() { printType(intType) printType(httpRequestType) printType(osFileType) printType(int64Type) }</code>
Pendekatan Ringkas
Jika anda menggunakan jenis tersebut semata-mata untuk tujuan perbandingan, pertimbangkan untuk menggunakan pemalar dan bukannya mencerminkan.Jenis:
<code class="go">type TypeDesc int const ( typeInt TypeDesc = iota typeHttpRequest typeOsFile typeInt64 ) func printType(t TypeDesc) { switch t { case typeInt: fmt.Println("Type: int") case typeHttpRequest: fmt.Println("Type: http.request") case typeOsFile: fmt.Println("Type: os.file") case typeInt64: fmt.Println("Type: uint64") default: fmt.Println("Type: Other") } } func main() { printType(typeInt) printType(typeHttpRequest) printType(typeOsFile) printType(typeInt64) }</code>
Atas ialah kandungan terperinci Bagaimana untuk Mendapatkan Jenis Tanpa Contoh dalam Go?. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!