怎么能获取组件point位置
x=(int)this.getLocation().getX();在内部类里面不容让用,那怎么获取啊
----------------解决方案--------------------------------------------------------
内部类应该是可以使用 外部类的方法的呀。。
莫非是static innerclass?
----------------解决方案--------------------------------------------------------
为什么这个可以
this.addWindowListener(new WindowAdapter()
{
public void windowClosing(WindowEvent e)
{
MyFrame.this.setVisible(false);
}
});
这个不可以呢
this.addWindowListener(new WindowAdapter()
{
public void windowClosing(WindowEvent e)
{
MyFrame.setVisible(false);
}
});
THIS有什么用啊
谢谢拉
----------------解决方案--------------------------------------------------------
this代表的应该是MyFrame类里面的一个static innerclass
----------------解决方案--------------------------------------------------------