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.
Microsoft Visual Studio 2010 を使用しています。この 2 次元配列を初期化しようとすると問題が発生します。- int A[480][640] .エラーは、スタックがオーバーフローしたことです。
このエラーはコンパイラを指していますか? どうすればこれを修正できますか?
ありがとう!
どの言語を使用していますか? 2D 配列は次のように初期化されます: (C#) int[,] A = new int[x,y];
int[,] A = new int[x,y];