gpt4 book ai didi

java - if 语句错误

转载 作者:行者123 更新时间:2023-12-01 07:40:59 25 4
gpt4 key购买 nike

我有一个 Android 应用程序。因为我正在比较 EditTest 中的两个字符串,但我得到了一些奇怪的结果......

if(v==findViewById(R.id.submit)){
//

if(email==crfm_email)
{

String warn="Done!";
Toast toast = Toast.makeText(getBaseContext(), warn, Toast.LENGTH_LONG);
toast.show();
}
else
{
oFN=(EditText)findViewById(R.id.owners_first_name);
String warn="email addresses do not match "+eMail+" "+crfEmail;
Toast toast = Toast.makeText(getBaseContext(), warn, Toast.LENGTH_LONG);
toast.show();

}

}

问题是即使两个变量的输入相同,控制也总是转到 else 部分。我知道这是一个简单的错误,但无法解决它......!

最佳答案

用途:

if (email.equals(crfm_email))
{
....

比较字符串。重点是您要比较 String 的内容,而不是对 String 对象的引用。

关于java - if 语句错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4898318/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com