> 백엔드 개발 > Golang > 제네릭을 사용하여 Go에서 제네릭 유형의 형식화된 개체를 어떻게 안전하게 만들 수 있나요?

제네릭을 사용하여 Go에서 제네릭 유형의 형식화된 개체를 어떻게 안전하게 만들 수 있나요?

Barbara Streisand
풀어 주다: 2024-12-08 06:55:10
원래의
815명이 탐색했습니다.

How Can I Safely Create Typed Objects of a Generic Type in Go Using Generics?

Go Generics로 유형화된 객체 생성

Go 1.18에서 Generics는 유형을 동적으로 조작하는 강력한 방법을 제공합니다. 일반적인 작업 중 하나는 지정된 유형의 새 개체를 만드는 것입니다. 다음 예를 고려하십시오.

type FruitFactory[T any] struct{}

func (f FruitFactory[T]) Create() *T {
    // How to create a non-nil fruit here?
    return nil
}

type Apple struct {
    color string
}

func example() {
    appleFactory := FruitFactory[Apple]{}
    apple := appleFactory.Create()
    // Panics because nil pointer access
    apple.color = "red"
}
로그인 후 복사

FruitFactory는 일반 유형 T의 새 인스턴스를 생성하려고 시도합니다. 그러나 nil을 반환하면 프로그램이 중단됩니다. 이 시나리오에서 새 객체를 생성하는 방법을 살펴보겠습니다.

비포인터 객체 생성

T 유형이 포인터 유형이 아닌 경우 변수를 생성하고 주소 반환:

func (f FruitFactory[T]) Create() *T {
    var a T
    return &a
}
로그인 후 복사

또는 다음을 사용할 수도 있습니다. new(T):

func (f FruitFactory[T]) Create() *T {
    return new(T)
}
로그인 후 복사

포인터 개체 생성

포인터 개체를 생성하려면 더 많은 작업이 필요합니다. 유형 추론을 사용하여 포인터가 아닌 변수를 선언하고 이를 포인터로 변환할 수 있습니다.

// Constraining a type to its pointer type
type Ptr[T any] interface {
    *T
}

// The first type param will match pointer types and infer U
type FruitFactory[T Ptr[U], U any] struct{}

func (f FruitFactory[T,U]) Create() T {
    // Declare var of non-pointer type. This is not nil!
    var a U
    // Address it and convert to pointer type (still not nil)
    return T(&a)
}

type Apple struct {
    color string
}

func main() {
    // Instantiating with pointer type
    appleFactory := FruitFactory[*Apple, Apple]{}
    apple := appleFactory.Create()

    // All good
    apple.color = "red"

    fmt.Println(apple) // &{red}
}
로그인 후 복사

위 내용은 제네릭을 사용하여 Go에서 제네릭 유형의 형식화된 개체를 어떻게 안전하게 만들 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

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