Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Empty return in func with return value in golang [duplicate]

Tags:

go

I was reading some code written in Golang on Github and found a very interesting piece of code. I simplified it to be clear.

func  Insert(docs ...interface{}) (err error) {     for i := 0; i < 3; i++ {         err = fmt.Errorf("")         if err.Error()!="EOF" {             return         }     }     return  } 

I'm very confused about empty return here... How it works? Does he return nil as error or breaks for loop? I understand that this question looks dummy, but I cannot find any info on this in go docs... Also, I don't understand how we can return err, which is, as I understood, declared somehow in return. Does (err error) means that we already have an error variable available in our func which is used as default return value if none specified? Why then we implicitly make return err at the end of func?

I'll be very gratefull for explanation.

like image 754
Alex Voskresenskiy Avatar asked Jul 21 '17 13:07

Alex Voskresenskiy


People also ask

How to return 2 values from a function in Golang?

In Golang, we can return multiple values at a time from a single function. Multiple return values can be achieved by changing the return type of the function in the function signature. The (int, int) in this function signature explains that the return type is two integers.

Does Golang return by value?

Golang allows you to name the return values of a function. We can also name the return value by defining variables, here a variable total of integer type is defined in the function declaration for the value that the function returns.

How many values a Go function can return?

Functions in Golang can return multiple values, which is a helpful feature in many practical scenarios. This example declares a function with two return values and calls it from a main function.

What does return do in Golang?

Golang allows giving the names to the return or result parameters of the functions in the function signature or definition. Or you can say it is the explicit naming of the return variables in the function definition. Basically, it eliminates the requirement of mentioning the variables name with the return statement.


2 Answers

The function uses a "named" return value.

From the spec on return statements:

The expression list may be empty if the function's result type specifies names for its result parameters. The result parameters act as ordinary local variables and the function may assign values to them as necessary. The "return" statement returns the values of these variables.

Regardless of how they are declared, all the result values are initialized to the zero values for their type upon entry to the function. A "return" statement that specifies results sets the result parameters before any deferred functions are executed.

Using named returns allows you to save some code on manually allocating local variables, and can sometimes clean up messy if/else statements or long lists of return values.

func a()(x []string, err error){     return } 

is really just shorthand for

func a() ([]string,error){   var x []string   var err error   return x,err } 

Its a bit shorter, and I agree that it may be less obvious.

Named returns are sometimes needed, as it allows things like accessing them inside a deferred function, but the naked return is just syntactic sugar as far as I can tell, and is never strictly required.

One place I see it commonly is in error return cases in functions that have many return values.

if(err != nil){    return } return a,b,c,nil 

is easier than

if(err != nil){    return nil,nil,nil,err } return a,b,c,nil 

when you have to write it a bunch of times. And you don't have to modify those returns if you change the signature to have additional "real" return values.

Most places I am using them in the codebase I just searched, they definitely seem to be hiding other smells, like overly complex multi-purpose functions, too deep if/else nesting and stuff like that.

like image 65
captncraig Avatar answered Sep 29 '22 19:09

captncraig


Go's return values may be named. If so, they are treated as variables defined at the top of the function.

package main  import "fmt"  func split(sum int) (x, y int) {     x = sum * 4 / 9     y = sum - x    return }  func main() {     fmt.Println(split(17)) } 

https://tour.golang.org/basics/7

like image 43
AnkurJat Avatar answered Sep 29 '22 21:09

AnkurJat