我想创建一个数组并在 StringGrid 中输出它的元素,但是我收到错误
[C ++错误] Unit1.cpp(31):E2034无法将'AnsiString'转换为'int'
这是我的代码。你能说出导致错误的原因吗?
#define K 4
int M[K][K];
TForm1 *Form1;
__fastcall TForm1::TForm1(TComponent* Owner)
: TForm(Owner)
{
}
void __fastcall TForm1::Button1Click(TObject *Sender)
{
int i, j;
for(i=0;i<K;i++)
for(j=0;j<K;j++){
M[i][j] = random(100);
M[i][j]=StringGrid1->Cells[i][j];
}
}
如果我写M[i][j]=StrToInt(StringGrid1->Cells[i][j]);
或M[i][j]=StringGrid1->Cells[i][j].ToInt();
我会收到另一个错误,当我按下我的按钮1时。它说:带有消息“”的EConvertError不是有效的整数值
答案 0 :(得分:0)
问题在于:M[i][j]=StringGrid1->Cells[i][j];
StringGrid1-&gt; Cells是一个二维AnsiString数组,M是一个二维int数组。所以你不能直接将elems从一个移动到另一个:你必须先将它们转换为int。