Welcome To Golang By Example

Menu
  • Home
  • Blog
  • Contact Us
  • Support this website
Menu

Tag: go

Method on a non-struct type in Go (Golang)

Posted on June 20, 2020June 20, 2020 by admin

Methods can also be defined on a non-struct custom type. Non-struct custom types can be created through type definition. Below is the format for creating a new custom type For example we…

Struct Field Meta or Tags in Go (Golang)

Posted on June 14, 2020June 14, 2020 by admin

A struct in go also allows adding metadata to its fields. These meta fields can be used to encode decode into different forms, doing some forms of validations on struct fields, etc….

Accessing and Setting Struct Fields in Go (Golang)

Posted on June 14, 2020June 14, 2020 by admin

Overview GO struct is named collection of data fields which can be of different types. Struct acts as a container that has different heterogeneous data types which together represents an entity. For…

Nested Struct in Go (Golang)

Posted on June 14, 2020June 14, 2020 by admin

A struct can have an another struct nested in it. Let’s see an example of a nested struct. In below employee struct has address struct nested it in. Output Notice how nested…

Anonymous Fields in a Struct in Go (Golang)

Posted on June 14, 2020June 14, 2020 by admin

A struct can have anonymous fields as well, meaning a field having no name. The type will become the field name. In below example, string will be the field name as well The…

Declare or create/initialize struct variable in Go (Golang

Posted on June 14, 2020June 14, 2020 by admin

Overview GO struct is named collection of data fields which can be of different types. Struct acts as a container that has different heterogeneous data types which together represents an entity. For…

Struct in Go (Golang)

Posted on June 14, 2020September 16, 2021 by admin

This is the  chapter 16 of the golang comprehensive tutorial series. Refer to this link for other chapters of the series – Golang Comprehensive Tutorial Series Next Tutorial – ArrayPrevious Tutorial – Pointer Now let’s check…

Check if two structs are equal or struct equality in Go (Golang)

Posted on June 14, 2020June 14, 2020 by admin

The first thing to know before considering struct equality is weather if all struct fields types are comparable or not Some of the comparable types as defined by go specification are boolean…

Exported and UnExported fields of a struct in Go (Golang)

Posted on June 14, 2020June 14, 2020 by admin

Go doesn’t have any public,  private or protected keyword. The only mechanism to control the visibility outside the package is using the capitalized and non-capitalized formats Capitalized Identifiers are exported. The capital letter…

Pretty print struct variables in Go (Golang)

Posted on June 13, 2020January 8, 2021 by admin

Note: If you are interested in learning Golang, then for that we have a golang comprehensive tutorial series. Do check it out – Golang Comprehensive Tutorial Series. Now let’s see the current tutorial….

Posts pagination

Previous 1 … 33 34 35 … 44 Next
Follow @golangbyexample

Popular Articles

Golang Comprehensive Tutorial Series

All Design Patterns in Go (Golang)

Slice in golang

Variables in Go (Golang) – Complete Guide

OOP: Inheritance in GOLANG complete guide

Using Context Package in GO (Golang) – Complete Guide

All data types in Golang with examples

Understanding time and date in Go (Golang) – Complete Guide

©2025 Welcome To Golang By Example | Design: Newspaperly WordPress Theme