0

エラーが発生したとき、私はこのコードを実行していました。デバッガーを実行すると、エラーは「プログラムで発生したアクセス違反(セグメンテーション違反)エラー」でした。

/* Statcstr.cpp
* Le stringhe sono in realta' array static
*/
#pragma hdrstop
#include <condefs.h>
#include <string.h>
#include <iostream.h>
//---------------------------------------------------------------------------
#pragma argsused
int Modifica();
void Attesa(char *);
int main(int argc, char* argv[]) {
while( Modifica() );
Attesa("terminare");
return 0;
}
int Modifica() {
static unsigned int i = 0; // Per contare all'interno della stringa
char *st = "Stringa di tipo static\n";
if(i < strlen(st)) { // Conta i caratteri nella stringa
cout << st; // Stampa la stringa
st[i] = 'X'; //<--- THIS IS THE FAILING INSTRUCTION
i++; // Punta al prossimo carattere
return 1;
} else
return 0; // Indica che la stringa e' finita
}
void Attesa(char * str) {
cout << "\n\n\tPremere return per " << str;
cin.get();
}

どうすれば解決できるのか教えてください。どうもありがとうございました

4

1 に答える 1

2

文字列リテラルの変更は未定義の動作です。

char *st = "Stringa di tipo static\n";
           //this resides in read-only memory

として宣言してみてください

char st[] = "Stringa di tipo static\n";
            //this is a string you own

または、これは C++ であるため、 を使用する必要がありますstd::string

于 2012-04-06T22:02:07.353 に答える