Go 구조체로 작업할 때 특정 필드에 기본값을 설정해야 할 수도 있습니다. 이를 달성하는 데 사용할 수 있는 다양한 기술이 있습니다.
한 가지 방법은 별도의 생성자 함수를 작성하여 구조체를 인스턴스화하고 기본값으로 필드를 초기화하는 것입니다. 예:
//Something is the structure we work with type Something struct { Text string DefaultText string } // NewSomething create new instance of Something func NewSomething(text string) Something { something := Something{} something.Text = text something.DefaultText = "default text" return something }
사용 예:
// create a Something struct something := NewSomething("Example Text") // access the DefaultText field fmt.Println(something.DefaultText) // Output: default text
위 내용은 Go 구조체에서 기본값을 설정하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!