LoginSignup
18
8

More than 5 years have passed since last update.

[golang] struct の初期化で missing type in composite literal が出た場合の対処

Last updated at Posted at 2015-11-05

あんまりハマってる人が居なかったのでメモ。

golang で以下の様に nested な匿名 struct を定義すると、良い感じに初期化できなくてハマった。

type A struct {
  B struct {
    C string
    D string
  }
}

こんな感じで初期化したいけれど、コンパイルエラーになる。

var a = A{
  {
    "foo", // missing type in composite literal
    "bar",
  },
}

こう書かないといけないみたい。

var a = A{
  struct {
    C string
    D string
  }{
    "foo",
    "bar",
  },
}

とりあえず struct の定義を外に出して、下記のようにしてお茶を濁した。

type TypeB struct {
  C string
  D string
}
type A struct {
  B TypeB
}

var a = A{
  TypeB{
    "foo",
    "bar",
  }
}
18
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
18
8