タグ

ブックマーク / spinor.hatenablog.com (1)

  • C++11 における enum のまとめ - spinorのブログ

    後で忘れた時に、すぐに思い出せるようにメモ。ソースはFDIS(N3290)です。正式な規格書が FDIS と異なっていたら、すみません。 2種類の enum C++11 では、2種類の enum が用意されている(7.2p2)。 unscoped enumeration … お馴染みの C++03 でも活躍した enum scoped enumeration … 新規格 C++11 で新たに導入された enum で、いわゆる scoped and strongly typed enums 宣言(7.2p1) 実体宣言 unscoped enumeration は次のような感じ: enum identifier1 : long { enumerator1, enumerator2, enumerator3 = 100, enumerator4, // このカンマは C++03 では ill-

    C++11 における enum のまとめ - spinorのブログ
  • 1