인스턴스 없이 Go에서 Reflect.Type을 얻는 방법은 무엇입니까?

Linda Hamilton
풀어 주다: 2024-10-30 08:49:02
원래의
242명이 탐색했습니다.

How to Get a reflect.Type in Go Without an Instance?

인스턴스 없이 타입 얻기

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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!