实验十三
Posted hhyy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了实验十三相关的知识,希望对你有一定的参考价值。
package 实验十三; import javax.swing.JFrame; import javax.swing.JMenu; import javax.swing.JMenuBar; import javax.swing.JMenuItem; @SuppressWarnings("serial") class Menul extends JFrame JMenuBar jmb; JMenu x1,x2,x3,x4,x5,x6; JMenuItem t1,t2,t3,t4,t5,t6,t7,t8,t9,t10,t11,t12,t13,t14,t15,t16,t17; public Menul() jmb=new JMenuBar(); x1=new JMenu("开始"); x2=new JMenu("你的毕业学校"); x3=new JMenu("所学专业"); x4=new JMenu("想从事的职业"); x5=new JMenu("为什么想从事这份工作"); x6=new JMenu("希望去哪个地方工作"); t1=new JMenuItem("青海师范大学"); t2=new JMenuItem("青海大学"); t3=new JMenuItem("青海民族大学"); t4=new JMenuItem("网络工程"); t5=new JMenuItem("土木工程"); t6=new JMenuItem("水利工程"); t7=new JMenuItem("生物学"); t8=new JMenuItem("保存"); t9=new JMenuItem("编辑"); t10=new JMenuItem("复制"); t11=new JMenuItem("粘贴"); t12=new JMenu("建筑师"); t13=new JMenu("软件设计师"); t14=new JMenu("老师"); t16=new JMenu("南方"); t17=new JMenu("北方"); x1.add(t8); x1.add(t9); x1.add(t10); x1.add(t11); x2.add(t1); x2.add(t2); x2.add(t3); x3.add(t4); x3.add(t5); x3.add(t6); x3.add(t7); x4.add(t12); x4.add(t13); x4.add(t14); x4.add(x5); x6.add(t15); x6.add(t16); x6.add(t17); jmb.add(x1); jmb.add(x2); jmb.add(x3); jmb.add(x4); jmb.add(x6); this.setJMenuBar(jmb); this.setBounds(80, 80, 500, 400); this.setVisible(true); this.setDefaultCloseOperation(EXIT_ON_CLOSE); public static void main(String[] args) new Menul();
以上是关于实验十三的主要内容,如果未能解决你的问题,请参考以下文章