JAVA getActionCommand()问题
publicclasscimplementsActionListener{staticJFramew=newJFrame();publicstaticvoidmain(S...
public class c implements ActionListener
{
static JFrame w = new JFrame();
public static void main(String args[])
{
c C = new c();
w.setSize(500,500);
w.setVisible(true);
w.setLayout(null);
C.annui();
}
public void annui()
{
JButton an[] = new JButton[2];
for(int i=0,ii=0;i<2;i++,ii+=50)
{
an[i] = new JButton(i+"");
an[i].setBounds(0,ii,50,50);
an[i].addActionListener(this);
w.add(an[i]);
}
}
@Override
public void actionPerformed(ActionEvent e)
{
if(e.getActionCommand()=="1")
{
System.out.println(111);
}
}
}
如果在定义按钮的时候 new JButton("1") 这样就正常输出111
但按上面的方法就不行 同样是字符串类型 这是为什么呢? 展开
{
static JFrame w = new JFrame();
public static void main(String args[])
{
c C = new c();
w.setSize(500,500);
w.setVisible(true);
w.setLayout(null);
C.annui();
}
public void annui()
{
JButton an[] = new JButton[2];
for(int i=0,ii=0;i<2;i++,ii+=50)
{
an[i] = new JButton(i+"");
an[i].setBounds(0,ii,50,50);
an[i].addActionListener(this);
w.add(an[i]);
}
}
@Override
public void actionPerformed(ActionEvent e)
{
if(e.getActionCommand()=="1")
{
System.out.println(111);
}
}
}
如果在定义按钮的时候 new JButton("1") 这样就正常输出111
但按上面的方法就不行 同样是字符串类型 这是为什么呢? 展开
展开全部
@Override
public void actionPerformed(ActionEvent e)
{
if(e.getActionCommand().equals("1")) //这里应该这个写
{
System.out.println(111);
}
}
至于为什么,你得先了解java的字符串原理,也就是串池的概念, 另外也要明白 == 和equal()方法是有区别的,前者是比较引用,后者是值比较
简单说下 "1"=="1" 这样为ture 1+"" == "1" 这样为false
public void actionPerformed(ActionEvent e)
{
if(e.getActionCommand().equals("1")) //这里应该这个写
{
System.out.println(111);
}
}
至于为什么,你得先了解java的字符串原理,也就是串池的概念, 另外也要明白 == 和equal()方法是有区别的,前者是比较引用,后者是值比较
简单说下 "1"=="1" 这样为ture 1+"" == "1" 这样为false
追问
恩 的确
分给你了 不过能不能解释下 同样是字符串 为什么直接声明和转格式就不一样的?
追答
1+"" == "1" 这样为false
这样是ture,想歪了
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询