Back

Golang Type Alias

Golang type aliases were introduced in Go version 1.9 and have been available since. Type alias declaration has a different form from the standard type definition and can be particularly helpful during code refactoring but can also have other uses.

Type declaration and type definition

Before 1.9 Go language had a way to create an alternative name for all constants, functions, and almost all variables. As mentioned, alias declaration has a bit different syntax from the type definition. The type alias allows you to create a new name for an existing type. The form type declaration has is as follows:

 

type NewAlias = OldType

 

whereas the standard type definition structure looks like that:

 

type NewAlias OldType

 

The most significant difference between the two is that the alias declaration does create a new distinct type separate from the type it was created from. It simply creates an alias for the T1 name. You could think about this as an alternate name for the type T2.

Code refactoring

Type alias declaration wasn’t designed with everyday use in mind. The main idea behind the implementation of this feature to Go was to help with the maintenance of the existing code and code repair. When you need to move a type between packages while undertaking large-scale refactorings compatibility with existing clients is crucial.

Type aliases: parameter types and compatibility

To make sure that the existing type and the alias will be compatible, the type alias should have interchangeable parameter types.

 

package main


import (
    “fmt”
)


type foo struct{}

// declare a new alias for foo type
type bar = foo


func printType(i bar) {
    fmt.Printf(“my type is %T\n”, b)
}

func main() {
    var b bar
    printType(b)
}

 

Code readability

In addition to working on large codebases type aliases can be used to improve the general readability of the code. Complex function definitions can be replaced with aliases too.

 

type QueryFunc = func(ctx context.Context, sql string, args …any) (Rows, error)

 

It’s part of jackc/pgx library. Instead of using this function prototype in each function, it is easier and more readable to use the new name (alias) as an argument. For example:

 

func getFromDatabase(ctx context.Context, query QueryFunc) (Rows, error)

rows, err := getFromDatabase(ctx, conn1.Query)

rows, err = getFromDatabase(ctx, txn1.Query)

Reducing boilerplate code

Using alternate names for types often used by packages can reduce the boilerplate code. Take into consideration the following example:

 

for i := range listOfObjects {

 valueOfOne := listOfObjects[i].Database.Transaction.Get(ctx, 1)

 valueOfTwo := listOfObjects[i].Database.Transaction.Get(ctx, 2)

}


type getter = func(context.Context, int)

var get getter

for i := range listOfObjects {

 get = listOfObjects[i].Database.Transaction.Get

 valueOfOne = get(ctx, 1)

 valueOfTwo = get(ctx, 2)

}

 

By defining these aliases and giving the types an alternate spelling that is simpler we allow packages to simply refer to Get instead of using the whole path which on a larger scale is helpful in keeping the code clean and tight.

Key takeaways

Type aliasing refers to the method of declaring a new name for an existing type. This alternate spelling improves code readability and is a big game-changer in code refactoring. From the business perspective, it shows that even if Golang is much younger than technologies such as Python and Java, Go core developers try to do anything to make it workable from the get-go.

 

The Golang vet command is a built-in tool that is included in the Go programming language. It is designed to help developers identify and diagnose potential problems in their Go code. This can be useful for catching errors before they are compiled, ensuring that the code is as clean and efficient as possible.

Written by Janusz

Go 1.18 released in the first half of 2022 was probably the biggest update in Golang’s history. Google themselves called it a milestone in the development of the Golang programming language that can be considered a culmination of the last 10 years of design and development efforts.

Written by Janusz

Golang type aliases were introduced in Go version 1.9 and have been available since. Type alias declaration has a different form from the standard type definition and can be particularly helpful during code refactoring but can also have other uses.

Written by Janusz

Both Golang and Python are fantastic programming languages, each in its way. We examine their strengths, weaknesses, and areas of use to help you figure out how you can leverage them for your business goals.  

Written by Janusz

Found 7 Results
Page 1 of 1

Go Vet Command and Its Usage


The Golang vet command is a built-in tool that is included in the Go programming language. It is designed to help developers identify and diagnose potential problems in their Go code. This can be useful for catching errors before they are compiled, ensuring that the code is as clean and efficient as possible.

go vet command

December 5, 2022-


How The Biggest Ever Go Update Brought Native Fuzzing


Go 1.18 released in the first half of 2022 was probably the biggest update in Golang’s history. Google themselves called it a milestone in the development of the Golang programming language that can be considered a culmination of the last 10 years of design and development efforts.

How the Biggest Ever Go Update Brought Native Fuzzing

November 2, 2022-


Golang Type Alias


Golang type aliases were introduced in Go version 1.9 and have been available since. Type alias declaration has a different form from the standard type definition and can be particularly helpful during code refactoring but can also have other uses.

golang type alias

October 25, 2022-


Python vs. Golang. Features, Pros, Cons, and Areas of Use


Both Golang and Python are fantastic programming languages, each in its way. We examine their strengths, weaknesses, and areas of use to help you figure out how you can leverage them for your business goals.  

python vs golang

October 12, 2022-


What is Golang?


Golang (or Go in short) is a breath of fresh air in the coding market. A long-needed shakeup in the stale programming market with a cute gopher as a mascot. Its development was started in 2007 by designers Robert Griesemer, Rob Pike, and Ken Thompson.

April 27, 2022-


What are the best frameworks for Golang REST API?


As using a framework is completely optional, you’re probably wondering: should I even use one? 

April 21, 2022-


Golang vs Java comparison. Why are more and more companies moving from Java to Golang?


Everyone knows Java, but do you know Golang? Golang (or G in short) started development in 2007 and was published in 2009 by Google as an open-source programming language.


Page 1 of 1