Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
コード スニペット:
static struct { static const unsigned char myConstArray[] = { 50, 51, 52, 52, 53, 54, 55, 55, 56, 57, 58, 58, 59, 60, }; //more.... }_SomeValues;
これはどのように機能しますか?( after = a ; がないことを訴える)
への変更:
static struct { const unsigned char myConstArray[14]; } _SomeValues = { { 50, 51, 52, 52, 53, 54, 55, 55, 56, 57, 58, 58, 59, 60, } };
おそらく、以下のリンクもあなたを助けるかもしれません
C++ クラスの Static Const 初期化構造体配列
c ++配列をメンバーとして構造体を初期化する
構造体に静的変数を含めることはできません