web-dev-qa-db-ja.com

構造体のinit関数

Goにはクラスがありませんが、代わりに構造体の概念を推進していることを理解しています。

構造体には、クラスの__construct()関数と同様に呼び出すことができる初期化関数がありますか?

例:

type Console struct {
    X int
    Y int
}

func (c *Console) init() {
    c.X = "5"
}

// Here I want my init function to run
var console Console

// or here if I used
var console Console = new(Console)
28
Senica Gonzalez

Goには暗黙のコンストラクタはありません。あなたはおそらくこのようなものを書くでしょう。

package main

import "fmt"

type Console struct {
    X int
    Y int
}

func NewConsole() *Console {
    return &Console{X: 5}
}

var console Console = *NewConsole()

func main() {
    fmt.Println(console)
}

出力:

{5 0}
53
peterSO

Goには自動コンストラクタはありません。通常、必要な初期化を実行する独自のNewT() *T関数を作成します。ただし、手動で呼び出す必要があります。

5
jimt

これはGo構造体の初期化完了です:

type Console struct {
    X int
    Y int
}

// Regular use case, create a function for easy create.
func NewConsole(x, y int) *Console {
    return &Console{X: x, Y: y}
}

// "Manually" create the object (Pointer version is same as non '&' version)
consoleP := &Console{X: 1, Y: 2}
console := Console{X: 1, Y: 2}

// Inline init
consoleInline :=  struct {
    X int
    Y int
}{
    X: 1,
    Y: 2,
}

0
cyang