2011年5月31日火曜日

文字列比較

間違い
String x = "android";
if (x == "android")
{
  処理
}

正解
String x = "android";
if (x.equals("android")) 
{
  処理
}

間違いでもエラーが出ないので悩ましい。

関連記事

0 件のコメント:

コメントを投稿