Mendapatkan Jenis Tanpa Contoh
Dalam Go, adalah mungkin untuk mendapatkan reflect.Type tanpa memiliki contoh jenis tersebut. Kuncinya terletak pada penggunaan kaedah Elem() untuk naik dari penuding ke jenis kepada jenis asas.
<code class="go">t := reflect.TypeOf((*int)(nil)).Elem() fmt.Println(t) // Output: int</code>
Pendekatan ini boleh digunakan pada pelbagai jenis, seperti yang ditunjukkan di bawah:
<code class="go">httpRequestType := reflect.TypeOf((*http.Request)(nil)).Elem() osFileType := reflect.TypeOf((*os.File)(nil)).Elem()</code>
Selain itu, adalah mungkin untuk mencipta pembolehubah global untuk menyimpan jenis ini untuk rujukan mudah.
<code class="go">var intType = reflect.TypeOf((*int)(nil)) var httpRequestType = reflect.TypeOf((*http.Request)(nil)) var osFileType = reflect.TypeOf((*os.File)(nil))</code>
Menggunakan pembolehubah global ini, anda boleh melakukan perbandingan jenis menggunakan pernyataan suis:
<code class="go">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") default: fmt.Println("Type: Other") } }</code>
<code class="go">printType(intType) // Output: Type: int</code>
Sebagai alternatif kepada menggunakan reflect.Type, anda boleh mencipta takrif jenis malar:
<code class="go">type TypeDesc int const ( TypeInt TypeDesc = iota TypeHttpRequest TypeOsFile ) 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") default: fmt.Println("Type: Other") } }</code>
Atas ialah kandungan terperinci Bagaimana untuk Mendapatkan refleksi.Taip dalam Go Without an Instance?. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!