Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

No 'return' in Golang for method that return values

Tags:

go

I'm looking to the video tutorial of Go. I see there a type declaration and method that have to return a pointer of that type.

type testType struct {
    value int
}

func (h *testType) testFunction(w http.ResponseWriter, r *http.Request) {
    // we have empty body
}

As you see, function body is empty, there is no return statement.

  • Why does it compile? I did not know that missing 'return' directives are permitted for methods that have to return some value. Could you tell me when they are not mandatory?
  • What value will be returned in this case? Always nil?
like image 557
Vitalii Avatar asked Oct 19 '25 01:10

Vitalii


1 Answers

That is not the return type of the function, it's a method and that is called the receiver type.

See Spec: Function declarations and Spec: Method declarations.

The return type is at the end of the function Signature, for example:

func testFunction(w http.ResponseWriter, r *http.Request) *testType {
    return nil
}

This is a function, having a return type of *testType.

This:

func (h *testType) testFunction(w http.ResponseWriter, r *http.Request) {
    // we have empty body
}

Is a method with receiver type *testType, and no return types.

like image 152
icza Avatar answered Oct 22 '25 03:10

icza



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!