当前位置: 技术问答>java相关
一点小问题
来源: 互联网 发布时间:2015-05-08
本文导语: 请问问什么我的这段程序不运行,谢谢! Button btnOk = new Button("确定"); Button btnCancel = new Button("取消"); btnOk.addActionListener(new ActionListener() { public void actionPerformed (ActionEvent e) { if ((user_...
请问问什么我的这段程序不运行,谢谢!
Button btnOk = new Button("确定");
Button btnCancel = new Button("取消");
btnOk.addActionListener(new ActionListener()
{
public void actionPerformed (ActionEvent e)
{
if ((user_name == txt_name.getText()) && (user_password == txt_password.getText()))
{
System.out.println("Welcome");
}
else if(txt_name.getText() != user_name)
{
System.out.println("User Name wrong!");
}
else if (txt_password.getText() != user_password)
{
System.out.println("User Password wrong");
}
}
});
btnCancel.addActionListener(new ActionListener()
{
public void actionPerformed (ActionEvent e)
{
System.exit(0);
}
});
Button btnOk = new Button("确定");
Button btnCancel = new Button("取消");
btnOk.addActionListener(new ActionListener()
{
public void actionPerformed (ActionEvent e)
{
if ((user_name == txt_name.getText()) && (user_password == txt_password.getText()))
{
System.out.println("Welcome");
}
else if(txt_name.getText() != user_name)
{
System.out.println("User Name wrong!");
}
else if (txt_password.getText() != user_password)
{
System.out.println("User Password wrong");
}
}
});
btnCancel.addActionListener(new ActionListener()
{
public void actionPerformed (ActionEvent e)
{
System.exit(0);
}
});
|
if ((user_name == txt_name.getText()) && (user_password == txt_password.getText()))
改为:
if ((user_name.equals(txt_name.getText())) && (user_password.equals(txt_password.getText())))
所有的字符串比较用equals来进行。
改为:
if ((user_name.equals(txt_name.getText())) && (user_password.equals(txt_password.getText())))
所有的字符串比较用equals来进行。
|
同意................
如果是String一定要用equals
不是尽量转变成String来比较
当比较两个引用是否相同时用==
比如String s1 = "OK";
String s2="0k";
s1.equals(s2) 返回true
s1==s2 返回false
如果是String s1 = "OK";String s2 = s1;
s1.equals(s2) 返回true
s1==s2 也返回true
String s1 = "OK";
如果是String一定要用equals
不是尽量转变成String来比较
当比较两个引用是否相同时用==
比如String s1 = "OK";
String s2="0k";
s1.equals(s2) 返回true
s1==s2 返回false
如果是String s1 = "OK";String s2 = s1;
s1.equals(s2) 返回true
s1==s2 也返回true
String s1 = "OK";
|
是条件判断的问题,用txt_name.getText().equals(user_name)作为判断条件,下面所有的==都如此。
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。