Structs
Creating
Nesting structs
Assiging values
When unassigned a value, a struct variable will be structname{}
.
For instance, the user
variable "null" value will be the empty struct user{}
.
Struct Literal or Composite Literal
Or you assign pass variable values.
If the values are passed in the same order as they were declared in the structure you may omit the keys. (Otherwise values will be assigned to the wrong keys)
Unassigned struct properties will have their default "null" values.
Access property values
Use .
to access a struct property value.
Structs as parameters
Structs are good examples of when to use pointers to pass data by reference, in order to avoid memory duplication.
If passed without pointers, they will be passed by value.
As stated above in the comments, Go handles as a shortcut, to access properties of a structure pointer the same way as a structure value. (With .
)
There is no need to access the pointer value, before accessing the property value, like (*user).name
.
Struct Methods
You can attach functions as struct properties, to give behavior to structures variables.
The function is not declared inside the structure, like it is in a JS
class.
Instead it is normally declared in the .go
file, along with the structure, but you provide a special parameter called Receiver
which states that the function belongs to the structure and allows the function to access the structure properties.
Mutating struct values
The way done above can only read values from the struct.
To mutate and change the data you have to pass the Receiver
as a pointer.
Just like regular function parameters, the Receiver
parameter is also by default passed by value.
constructors
These are convention functions to handle the creation of "new instances" of struct variables.
They are not Go features, but only a convention pattern.
By convention, constructors start with new
prefix in the function name.
Also make sure to return references to the data, otherwise two copies will be created.
One inside the function.
One for the outside.
Isolating them in packages
In a struct, not only its name should be Uppercase, but also all the properties that should be "public".
When isolated, it is common that the constructor function will be named only New
.
Following object oriented principles
Since properties of a "class" should not be available to be used at will, struct properties should also no be accessible.
The constructor should be available, or even other types of design patterns, to preserve entity integrity.
This way you may even set validation on struct creation.
Struct embedding
Also known as inheritance
in other Object Oriented languages.
Define anonymously
Define with a specific name
Last updated