Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to Return Nil String in Go?

Tags:

string

null

go

I have a function which returns a string under certain circumstances, namely when the program runs in Linux or MacOS, otherwise the return value should be nil in order to omit some OS-specific checks further in code.

func test() (response string) {
    if runtime.GOOS != "linux" {  
        return nil
    } else {
        /* blablabla*/
    }
}

however when I try to compile this code I get an error:

test.go:10:3: cannot use nil as type string in return argument.

If I return just an empty string like return "", I cannot compare this return value with nil further in code.

So the question is how to return a correct nil string value?

like image 260
sotona Avatar asked Sep 10 '18 10:09

sotona


People also ask

Can a string be nil in Go?

A string in Go is a value. Thus, a string cannot be nil .

Is nil null in Go?

About nil. nil is a predefined identifier in Go that represents zero values of many types. nil is usually mistaken as null (or NULL) in other languages, but they are different. Note: nil can be used without declaring it.

Is empty string Golang?

In this shot, we will learn to check if a string is empty or not. In Golang, we can do this by: Comparing it with an empty string. Evaluating the length of the string; if it's zero, then the string is empty, and vice versa.

How do I assign nil in Golang?

To actually be able to assign a new value ( nil ) to the pointer variable, we have to dereference it ( * operator).


2 Answers

If you can't use "", return a pointer of type *string; or–since this is Go–you may declare multiple return values, such as: (response string, ok bool).

Using *string: return nil pointer when you don't have a "useful" string to return. When you do, assign it to a local variable, and return its address.

func test() (response *string) {
    if runtime.GOOS != "linux" {
        return nil
    } else {
        ret := "useful"
        return &ret
    }
}

Using multiple return values: when you have a useful string to return, return it with ok = true, e.g.:

return "useful", true

Otherwise:

return "", false

This is how it would look like:

func test() (response string, ok bool) {
    if runtime.GOOS != "linux" {
        return "", false
    } else {
        return "useful", true
    }
}

At the caller, first check the ok return value. If that's true, you may use the string value. Otherwise, consider it useless.

Also see related questions:

How do I represent an Optional String in Go?

Alternatives for obtaining and returning a pointer to string: How do I do a literal *int64 in Go?

like image 190
icza Avatar answered Oct 08 '22 07:10

icza


Go has built-in support for multiple return values:

This feature is used often in idiomatic Go, for example to return both result and error values from a function.

In your case it could be like this:

func test() (response string, err error) {
    if runtime.GOOS != "linux" {  
        return "", nil
    } else {
        /* blablabla*/
    }
}

And then:

response, err := test()
if err != nil { 
    // Error handling code
    return;
}

// Normal code 

If you want to ignore the error, simply use _:

response, _ := test()
// Normal code
like image 43
Nic Avatar answered Oct 08 '22 07:10

Nic