标签:style blog io ar color sp java for on
计算器
一个接口,一个函数
参数用数组实现,参数个数可变,
查看源码也可以从jre包中查看
box grid布局管理器
Box : creatVerticalBox
JScrollPane
JSplitPane
JTree
JTable
Java事件驱动模型
button.addActionListener(/*参数是一个ActionListener*/)//面向接口编程
class CButtonExit implements ActionListener{
public void actionPerformed(ActionEvent argo){
System.exit(0);
}
}//ctrl+1快速生成代码
空指针错误:
是否实例化,是否有空指针,有没有超过生命周期,或作用域。
匿名内部类。用接口的形式实例化
JMenuItem
JMenu
JMenubar
首先做一个menubar ,其中放的都是menu,如果是二级菜单就在menu中放menu,如果是节点就放Jmenuitem吧
之后用addactionlistener
也可以用class frame1 extends JFrame implements ActionListener{}
1 class frame1 extends JFrame implements ActionListener{
2 public void actionPerformed(ActionEvent argo){
3 Object objSource = argo.getSource();
4 JComponent com = (JComponent )objSource;
5 if ( com.getName().equals("regist"))
6 {
7 }
8 else if(com.getName().equals(""))
9
10 }
11
12 }
标签:style blog io ar color sp java for on
原文地址:http://www.cnblogs.com/fillim/p/4139702.html