当前位置: 技术问答>java相关
这两段代码有什么不同?
来源: 互联网 发布时间:2014-12-31
本文导语: /* class koActionListener implements ActionListener { public void actionPerformed(ActionEvent e) { String ko=e.getActionCommand(); if (ko.equals("红色")) tf.setBackground(Color.red); else if (ko.equals("绿色")) tf.setBackgro...
/* class koActionListener implements ActionListener
{
public void actionPerformed(ActionEvent e)
{
String ko=e.getActionCommand();
if (ko.equals("红色"))
tf.setBackground(Color.red);
else if (ko.equals("绿色"))
tf.setBackground(Color.green);
else if (ko.equals("蓝色"))
tf.setBackground(Color.blue);
else if (ko.equals("黑色"))
tf.setBackground(Color.black);
}
}*/
class koActionListener implements ActionListener
{
public void actionPerformed(ActionEvent e)
{
String ko=e.getActionCommand();
if (e.equals("红色"))
tf.setBackground(Color.red);
else if (e.equals("绿色"))
tf.setBackground(Color.green);
else if (e.equals("蓝色"))
tf.setBackground(Color.blue);
else if (e.equals("黑色"))
tf.setBackground(Color.black);
}
}
为什么运行/*---*/中的代码可以出现结果,而后一段代码却什么也看不到.
{
public void actionPerformed(ActionEvent e)
{
String ko=e.getActionCommand();
if (ko.equals("红色"))
tf.setBackground(Color.red);
else if (ko.equals("绿色"))
tf.setBackground(Color.green);
else if (ko.equals("蓝色"))
tf.setBackground(Color.blue);
else if (ko.equals("黑色"))
tf.setBackground(Color.black);
}
}*/
class koActionListener implements ActionListener
{
public void actionPerformed(ActionEvent e)
{
String ko=e.getActionCommand();
if (e.equals("红色"))
tf.setBackground(Color.red);
else if (e.equals("绿色"))
tf.setBackground(Color.green);
else if (e.equals("蓝色"))
tf.setBackground(Color.blue);
else if (e.equals("黑色"))
tf.setBackground(Color.black);
}
}
为什么运行/*---*/中的代码可以出现结果,而后一段代码却什么也看不到.
|
第二段代码用e(Event)去和"红色"(String)比较当然不对拉
|
equals可用于比较两对象的内容。
ko是String,用equals可比较。e是ActionEvent对象,用equal是比较两个对象的内容,当然都不匹配了。
ko是String,用equals可比较。e是ActionEvent对象,用equal是比较两个对象的内容,当然都不匹配了。
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。