私はいくつかのテキストを解析していますが、配列を独自の行で定義するのではなく、右辺値として使用できれば、私の生活は楽になります。私はこれをしました
int a[]={1,2,3}; //its own line. Do not want
と
func([]()->int*{static int a[]={1,2,3}; return a; }()); //It compiles but untested. It doesn't compile with 2003
私は試した
func(int []={1,2,3}); //but got a compile error bc this is simply illegal
行の最後に追加のものを置くことはできますが、前に置くことはできません。何かアイデアはありますか?