电脑桌面
添加小米粒文库到电脑桌面
安装后可以在桌面快捷访问

《Java编程语言:原理与范例》课后实验源代码

《Java编程语言:原理与范例》课后实验源代码_第1页
1/50
《Java编程语言:原理与范例》课后实验源代码_第2页
2/50
《Java编程语言:原理与范例》课后实验源代码_第3页
3/50
下载后可任意编辑第一章实验一package ch01;import java.text.SimpleDateFormat;import java.util.Date;class Timer extends Thread { private SimpleDateFormat sdf = new SimpleDateFormat("yyyy 年 MM 月 dd 日 HH:mm:ss"); public void run() { while (true) { System.out.print("\r 现在时间是:"); Date now = new Date(); System.out.print(sdf.format(now)); try { sleep(1000); } catch (InterruptedException e) { e.printStackTrace(); } } }}public class Clock { public static void main(String[] args) { Timer timer = new Timer(); timer.start(); }}实验二package ch01;import java.awt.event.MouseAdapter;import java.awt.event.MouseEvent;import java.util.Random;import javax.swing.JButton;import javax.swing.JFrame;public class MagicButton extends MouseAdapter { JFrame win; JButton button = new JButton("你点不到我"); Random rand = new Random(); void initUI() {下载后可任意编辑 win = new JFrame(); win.setLayout(null); button.setSize(100, 40); button.addMouseListener(this); win.add(button); win.setSize(400, 300); win.setResizable(false); win.setLocationRelativeTo(null); win.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); win.setVisible(true); } public static void main(String[] args) { MagicButton demo = new MagicButton(); demo.initUI(); } public void mouseEntered(MouseEvent e) { int mouseX = button.getX() + e.getX(); int mouseY = button.getY() + e.getY(); while (true) { int buttonX = rand.nextInt(win.getWidth() - button.getWidth()); int buttonY = rand.nextInt(win.getHeight() - button.getHeight()); button.setLocation(buttonX, buttonY); if (!button.getBounds().contains(mouseX, mouseY)) { break; } } }}第二章下载后可任意编辑实验一/*********************************2. 交换两个变量的值(不允许使用中间变量)。 **********************************/package ch03;public class Exp2_2 {public static void main(String[] args) {int a = 2, b = 3...

1、当您付费下载文档后,您只拥有了使用权限,并不意味着购买了版权,文档只能用于自身使用,不得用于其他商业用途(如 [转卖]进行直接盈利或[编辑后售卖]进行间接盈利)。
2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。
3、如文档内容存在违规,或者侵犯商业秘密、侵犯著作权等,请点击“违规举报”。

碎片内容

《Java编程语言:原理与范例》课后实验源代码

确认删除?
VIP
微信客服
  • 扫码咨询
会员Q群
  • 会员专属群点击这里加入QQ群
客服邮箱
回到顶部