Javaの人々への私の質問は、2つの文字列を比較しているときです
imageName=new String[20];
....
imageName[1]="img1";
imageName[2]="img1";
if(imageName[1]==imageName[2])
{
//// codes
}
完全に機能しますが、数値の連結によって文字列を作成しているときは機能しません
imageName=new String[20];
int j=1,k=1;
imageName[1]="img"+j;
imageName[2]="img"+k;
if(imageName[1].toString()==imageName[2].toString())
{
//// codes
}
jとkの値は同じですが、機能していません
あなたの解決策を事前に感謝します