实训任务书-java 下载本文

学习评价 在规定的时间内,合理安排时间资源,按照规定的质量要求完成学习任务,以熟练度和规范度评价学生成果。

漳州职业技术学院计算机工程系实训任务书

专业 课程 任务名称 学习形式 软件技术专业 班级 10软件2 任课教师 谢世煊 面向对象初级编程(java) 任务十四、登录界面跳转 课内 ( √ ) 课后 ( ) 1、学会拖拉控件 2、熟练使用页面跳转 学习方式 小组( ) 个人独立( √ ) 学习 目标 实训过程 实施建议 源代码: /* * To change this template, choose Tools | Templates * and open the template in the editor. */ package stusystem; /** * * @author Administrator */ public class Main { /** * @param args the command line arguments */ public static void main(String[] args) { java.awt.EventQueue.invokeLater(new Runnable() { public void run() { Login dialog=new Login(new javax.swing.JFrame(),true); dialog.addWindowFocusListener(new java.awt.event.WindowAdapter() { public void windowClosing(java.awt.event.WindowEvent e){ System.exit(0); } }); dialog.setVisible(true); } }); }