.dat ファイルを 2D 配列に読み込もうとしています。同じファイルを 1D 配列に読み込んで、各配列の各行を正常に読み込もうとしました。ただし、以下の 2D 配列のコードでは、「ConsoleApplication11.exe の 0x00B67361 で未処理の例外が発生しました: 0xC0000005: アクセス違反の読み取り場所 0x00000000」というメッセージ ボックスがポップアップ表示されます。未処理の例外の背後にある理由は何ですか?私は VS 2012 Express Edition を使用しています。
do {
char * s = find_data.cFileName;
ifstream fin;
fin.open(s); // open a file
if (!fin.good())
return 1; // exit if file not found
// read each line of the file
while (!fin.eof())
{
// read an entire line into memory
char buf[MAX_CHARS_PER_LINE];
int n = 0;
int s = 0;
int m = 0;
// array to store memory addresses of the tokens in buf
const char* token[MAX_TOKENS_PER_LINE][MAX_TOKENS_PER_LINE] = {}; // initialize to 0
for (m = 1; m < MAX_TOKENS_PER_LINE; m++)
{
fin.getline(buf, MAX_CHARS_PER_LINE);
// parse the line into blank-delimited tokens
// a for-loop index
//char* next_token[MAX_TOKENS_PER_LINE] = {}; // initialize to 0
char *next_token;
// parse the line
token[0][0] = strtok_s(buf, DELIMITER, &next_token); // first token
//token[0] = strtok(buf, DELIMITER); // first token
if (token[0][0]) // zero if line is blank
{
for (n = 1; n < MAX_TOKENS_PER_LINE; n++)
{
token[m][n] = strtok_s(0, DELIMITER, &next_token); // subsequent tokens
//token[n] = strtok(0, DELIMITER); // subsequent tokens
if (!token[m][n]) break; // no more tokens
}
}
}
// process (print) the tokens
for (int i = 0; i < n; i++) // n = #of tokens
for (int j = 0; j < m; j++)
{
cout << "Token[" << i << "," << j << "] = " << token[i][j] << endl;
cout << endl;
}
}
// Your code here
} while( FindNextFile( h, & find_data ) );
FindClose( h );