인스턴스 없이 타입 얻기
Go에서는 타입의 인스턴스를 갖지 않고도 Reflect.Type을 얻을 수 있습니다. 핵심은 Elem() 메서드를 활용하여 포인터 유형에서 기본 유형으로 승격하는 데 있습니다.
<code class="go">t := reflect.TypeOf((*int)(nil)).Elem() fmt.Println(t) // Output: int</code>
이 접근 방식은 아래 설명과 같이 다양한 유형에 적용될 수 있습니다.
<code class="go">httpRequestType := reflect.TypeOf((*http.Request)(nil)).Elem() osFileType := reflect.TypeOf((*os.File)(nil)).Elem()</code>
또한 쉽게 참조할 수 있도록 전역 변수를 생성하여 이러한 유형을 저장할 수 있습니다.
<code class="go">var intType = reflect.TypeOf((*int)(nil)) var httpRequestType = reflect.TypeOf((*http.Request)(nil)) var osFileType = reflect.TypeOf((*os.File)(nil))</code>
이러한 전역 변수를 사용하면 스위치 문을 사용하여 유형 비교를 수행할 수 있습니다.
<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>
reflect.Type을 사용하는 대신 상수 유형 정의를 만들 수 있습니다.
<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>
위 내용은 인스턴스 없이 Go에서 Reflect.Type을 얻는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!