>백엔드 개발 >Golang >Go의 `reflect` 패키지를 사용하여 내장 유형과 사용자 정의 유형을 어떻게 구별할 수 있나요?

Go의 `reflect` 패키지를 사용하여 내장 유형과 사용자 정의 유형을 어떻게 구별할 수 있나요?

Barbara Streisand
Barbara Streisand원래의
2024-12-28 20:24:10275검색

How Can I Distinguish Between Built-in and Custom Types Using Go's `reflect` Package?

Reflect를 사용하여 내장되지 않은 유형 식별

도전

구분해야 함 Reflect 패키지를 사용하여 []byte의 A []byte 유형과 같은 유형을 사용합니다. Reflect.TypeOf(A{}).Kind는 두 유형 모두에 대해 Slice를 반환하므로 구분하기가 어렵습니다.

유형에 대한 배경

  • 이름이 지정된 유형은 다음과 같습니다. 유형 선언을 사용하여 정의됩니다(예: MyInt int 유형).
  • 이름이 지정되지 않은 유형은 유형 리터럴입니다. (예: []int, struct{i int}).
  • 미리 선언된 유형(예: string, int)을 즉시 사용할 수 있습니다.

접근법

반사 방법을 사용하여 type:

  • Name(): 명명된 유형의 이름을 반환합니다. 명명되지 않은 유형의 경우 비어 있습니다.
  • PkgPath(): 명명된 유형의 패키지 경로를 반환합니다. 미리 선언되었거나 이름이 지정되지 않은 유형의 경우 비어 있습니다.
  • Elem(): 배열, 채널, 맵, 포인터 및 슬라이스의 요소 유형을 반환합니다.

특수 사례

  • 익명 구조체 유형: 필드를 반복하고 사용자 정의 확인 유형.
  • 지도 유형: 키 유형과 값 유형을 모두 확인하세요.

구현

func isCustom(t reflect.Type) bool {
    if t.PkgPath() != "" {
        return true
    }

    if k := t.Kind(); k == reflect.Array || k == reflect.Chan || k == reflect.Map ||
        k == reflect.Ptr || k == reflect.Slice {
        return isCustom(t.Elem()) || k == reflect.Map && isCustom(t.Key())
    } else if k == reflect.Struct {
        for i := t.NumField() - 1; i >= 0; i-- {
            if isCustom(t.Field(i).Type) {
                return true
            }
        }
    }

    return false
}

테스트 중

이를 다양한 분야에 적용 유형:

fmt.Println(isCustom(reflect.TypeOf("")))                // false
fmt.Println(isCustom(reflect.TypeOf(int(2))))            // false
fmt.Println(isCustom(reflect.TypeOf([]int{})))           // false
fmt.Println(isCustom(reflect.TypeOf(struct{ i int }{}))) // false
fmt.Println(isCustom(reflect.TypeOf(&i)))                // false
fmt.Println(isCustom(reflect.TypeOf(map[string]int{})))  // false
fmt.Println(isCustom(reflect.TypeOf(A{})))               // true
fmt.Println(isCustom(reflect.TypeOf(&A{})))              // true
fmt.Println(isCustom(reflect.TypeOf([]A{})))             // true
fmt.Println(isCustom(reflect.TypeOf([][]A{})))           // true
fmt.Println(isCustom(reflect.TypeOf(struct{ a A }{})))   // true
fmt.Println(isCustom(reflect.TypeOf(map[K]int{})))       // true
fmt.Println(isCustom(reflect.TypeOf(map[string]K{})))    // true

reflect 패키지를 효과적으로 사용하여 내장 유형과 사용자 정의 유형을 구별하는 능력을 보여줍니다.

위 내용은 Go의 `reflect` 패키지를 사용하여 내장 유형과 사용자 정의 유형을 어떻게 구별할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.