为什么死code警告

为什么死code警告

本文介绍了为什么死code警告的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在这个位置上死code警告:

 如果(电子邮件==+ email.getText()。的toString()+){
  Toast.makeText(getApplicationContext(),EMAIL_ID已经可用,Toast.LENGTH_SHORT).show();
}

谁能帮助?


解决方案

"Email" can never be equal to "+email.getText().toString()+"

You probably wanted to write

if("Email" == email.getText().toString())

and you should use the equal-Method to compare Strings:

if("Email".equals(email.getText().toString()))

You'll find more informations about comparing Strings in Java HERE

这篇关于为什么死code警告的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-18 16:15