经典java程序源代码

经典java程序源代码

ID:26799002

大小:263.00 KB

页数:136页

时间:2018-11-29

经典java程序源代码_第1页
经典java程序源代码_第2页
经典java程序源代码_第3页
经典java程序源代码_第4页
经典java程序源代码_第5页
资源描述:

《经典java程序源代码》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库

1、.WORD格式整理..经典Java程序源代码1.加法器(该java源文件的名称是Adder.java)importjava.awt.*;importjava.awt.event.*;importjavax.swing.*;publicclassAdderimplementsActionListener{JFrameAdderFrame;JTextFieldTOprand1;JTextFieldTOprand2;JLabelLAdd,LSum;JButtonBAdd,BClear;JPanelJP1,JP2;publicAdder()

2、{AdderFrame=newJFrame("AdderFrame");TOprand1=newJTextField("0.0");TOprand2=newJTextField("0.0");LAdd=newJLabel("+");LSum=newJLabel("=");BAdd=newJButton("Add");BClear=newJButton("Clear");..专业知识分享...WORD格式整理..JP1=newJPanel();JP2=newJPanel();BAdd.addActionListener(this);B

3、Clear.addActionListener(newActionListener(){publicvoidactionPerformed(ActionEventevent){TOprand1.setText("0.0");TOprand2.setText("0.0");LSum.setText("=");}});AdderFrame.add(JP1);JP1.add(TOprand1);JP1.add(LAdd);JP1.add(TOprand2);JP1.add(LSum);AdderFrame.add(JP2);JP2.add

4、(BAdd);JP2.add(BClear);AdderFrame.getContentPane().setLayout(newBorderLayout());AdderFrame.getContentPane().add(JP1,BorderLayout.NORTH);AdderFrame.getContentPane().add(JP2,BorderLayout.SOUTH);..专业知识分享...WORD格式整理..AdderFrame.addWindowListener(newWindowAdapter(){publicvo

5、idwindowClosing(WindowEventevent){System.exit(0);}});AdderFrame.pack();AdderFrame.setVisible(true);AdderFrame.setResizable(false);AdderFrame.setSize(250,100);}publicvoidactionPerformed(ActionEventevent){doublesum=(double)(Double.valueOf(TOprand1.getText()).doubleValue(

6、)+Double.valueOf(TOprand2.getText()).doubleValue());LSum.setText("="+sum);}publicstaticvoidmain(String[]args){Adderadder=newAdder();}}..专业知识分享...WORD格式整理..2.小型记事本(该java源文件由两个类构成,名称为Notepad.java)importjava.awt.*;importjava.awt.event.*;importjavax.swing.*;importjava.io.*

7、;classmynotepadextendsJFrame{Filefile=null;Colorcolor=Color.red;mynotepad(){initTextContent();initMenu();initAboutDialog();}voidinitTextContent(){getContentPane().add(newJScrollPane(content));}JTextPanecontent=newJTextPane();JFileChooseropenfile=newJFileChooser();JColo

8、rChooseropencolor=newJColorChooser();..专业知识分享...WORD格式整理..JDialogabout=newJDialog(this);JMenuBarmenu=newJMenuBar();//

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。