I am trying to assign a value with type *string
to a variable with type *wrapperspb.StringValue
. However, when the *string
is nil, it triggers an error (please see the comments in the snipped code to see what kind of error).
Here is a simplified version of my code:
// You can edit this code!
// Click here and start typing.
package main
import (
"fmt"
"google.golang.org/protobuf/types/known/wrapperspb"
)
func main() {
var var1 *wrapperspb.StringValue
var1 = &wrapperspb.StringValue{Value: "test1"}
fmt.Println("var1:")
fmt.Println(var1)
var var2 *string
fmt.Println("var2:")
fmt.Println(var2)
//var1 = var2 // it says "Cannot use 'var2' (type *string) as the type *wrapperspb.StringValue"
//var1 = wrapperspb.String(*var2) // it says panic: runtime error: invalid memory address or nil pointer dereference
//fmt.Println("var1 with var2 value:")
//fmt.Println(var1)
}
Does anyone know how to properly handle the conversion/assignment?
Here is a golang playground: https://go.dev/play/p/5JBfU0oEIC-
If your
var2
string pointer isnil
, you should also leave thevar1
*wrapperspb.StringValue
pointernil
as well. Methods ofwrapperspb.StringValue
handles if itself is thenil
pointer. So "convert" it like this:Testing it:
This will output (try it on the Go Playground):