Answers for "init struct go"

Go
1

go create new instance of struct

type Person struct {
	Name string
}
 
func main() {
	var me Person
	me.name = "mattalui"
}
Posted by: Guest on March-13-2020
0

init struct go

type Student struct {
    Name string
    Age  int
}

var a Student    // a == Student{"", 0}
a.Name = "Alice" // a == Student{"Alice", 0}
Posted by: Guest on December-19-2020
-1

inizialiyze struct di struct golang

package main

import "fmt"

func main() {
    result := Result{
        Name: "I am Groot",
        Objects: []MyStruct{
            {
                MyField: 1,
            },
            {
                MyField: 2,
            },
            {
                MyField: 3,
            },
        },
    }

    fmt.Println(result)

}

type MyStruct struct {
    MyField int
}

type Result struct {
    Name    string
    Objects []MyStruct
}
Posted by: Guest on December-04-2020

Browse Popular Code Answers by Language