0

重複の可能性:
JavaString.equalsと==
2つの文字列の比較はAndroidでは機能しません

edittextフィールドに入力されたテキストと比較しようとしている値を持つ文字列配列があります。ただし、edittextと配列の値の両方が同じであるにもかかわらず、my if(answer ==guess)がtrueに解決されることはありません。

Toastメッセージを介してデバッグを行いましたが、回答と推測の両方が同じであることが示されています。誰かがこれを手伝ってもらえますか?以下のコード:

    final EditText et;

    et = (EditText) findViewById(R.id.editText1);
    String guess = et.getText().toString();
    String answer = LinesFromFile[LineNumber]; 

    if (answer == guess)
    {
        Toast msg = Toast.makeText(getBaseContext(), answer + " " + guess + " right", Toast.LENGTH_LONG);
        msg.show();
    }

    else
    {
        Toast msg = Toast.makeText(getBaseContext(), answer + " " + guess + " wrong", Toast.LENGTH_LONG);
        msg.show();         
    }
4

4 に答える 4

3

を使用して文字列比較を行うことはできません==...を使用する必要がありますString.equals()

if (answer.equals(guess))
{
  ...
于 2012-07-06T03:37:50.247 に答える
3

使用しない==で、より適切に使用することをお勧めしますequals()

于 2012-07-06T03:38:08.110 に答える
3

文字列の==演算子は、参照が等しいかどうかをチェックします。そのため、参照が機能しません。

使用するcontentEquals()

メソッドはString.contentEquals()内容(文字シーケンス)を比較するだけで、他のオブジェクトものインスタンスであるかどうかはチェックしませんString

または、2つが文字列であることが確実な場合は、equals()を使用します

String.equals()は、Stringの内容を比較するだけでなく、他のオブジェクトもStringのインスタンスであるかどうかをチェックします。

于 2012-07-06T03:38:59.263 に答える
1

You cannot use '==' to compare strings

You can also use compare:

            if(username.compareTo(name) == 0) // if string matches

            {
            // add the code

            }

From javadoc:

public int compareTo(String anotherString)

Compares two strings lexicographically. The comparison is based on the Unicode value of each character in the strings. The character sequence represented by this String object is compared lexicographically to the character sequence represented by the argument string. The result is a negative integer if this String object lexicographically precedes the argument string. The result is a positive integer if this String object lexicographically follows the argument string. The result is zero if the strings are equal; compareTo returns 0 exactly when the equals(Object) method would return true.

This is the definition of lexicographic ordering. If two strings are different, then either they have different characters at some index that is a valid index for both strings, or their lengths are different, or both. If they have different characters at one or more index positions, let k be the smallest such index; then the string whose character at position k has the smaller value, as determined by using the < operator, lexicographically precedes the other string. In this case, compareTo returns the difference of the two character values at position k in the two string -- that is, the value:

 this.charAt(k)-anotherString.charAt(k)

If there is no index position at which they differ, then the shorter string lexicographically precedes the longer string. In this case, compareTo returns the difference of the lengths of the strings -- that is, the value:

 this.length()-anotherString.length()

Specified by:

compareTo in interface Comparable<String>

Parameters:

anotherString - the String to be compared.

Returns:

the value 0 if the argument string is equal to this string; a value less than 0 if this string is lexicographically less than the string argument; and a value greater than 0 if this string is lexicographically greater than the string argument.

于 2012-07-06T03:54:18.680 に答える