Structs

suggest change

A struct groups related variables into a single entity.

Additionally, structs can have methods, similar to classes in C++ or Java.

Unlike classes in C++ or Java, structs don’t implement inheritance. You can achieve some of the code re-use with struct embedding.

Zero value of a struct is a struct whose fields are set to their respective zero values.

Basics of structs:

type MyStruct struct {
	IntVal           int
	StringVal        string
	unexportedIntVal int
}

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents