Java开发网 |
注册 |
登录 |
帮助 |
搜索 |
排行榜 |
发帖统计
|
您没有登录 |
» Java开发网 » Java SE 综合讨论区
» 实战错误讨论
打印话题 寄给朋友 订阅主题 |
作者 | 求助:关于构造函数的问题 |
qufei0325
发贴: 1 积分: 0 |
于 2007-02-14 09:19
下面程序编译时总提示super语句应为构造函数第一条语句,可这个程序的super语句不就是构造函数的第一条语句么?哪位朋友给解释一下,谢了! import java.awt.*; import java.awt.event.*; class MyFrame extends Frame implements ActionListener { GridLayout grid; TextField text; Button button; Toolkit tool; Dimension dim; void MyFrame() { super("试验"); setBounds(0,0,341,154); setVisible(true); grid=new GridLayout(2,1); setLayout(grid); text=new TextField(28); button=new Button("变大"); add(text); add(button); button.addActionListener(this); tool=getToolkit(); } public void actionPerformed(ActionEvent e) { dim=tool.getScreenSize(); text.setText("宽是"+dim.width+",高是"+dim.height); setBounds(0,0,dim.width,dim.height); validate(); } } public class Try { public static void main(String args[]) { MyFrame my=new MyFrame(); } } [转帖]面向对象的思维方法 |
话题树型展开 |
人气 | 标题 | 作者 | 字数 | 发贴时间 |
10123 | 求助:关于构造函数的问题 | qufei0325 | 905 | 2007-02-14 09:19 |
8432 | Re:求助:关于构造函数的问题 | 嚼花仔 | 311 | 2007-02-15 09:45 |
8004 | Re:求助:关于构造函数的问题 | liyan811101 | 33 | 2007-04-29 09:24 |
8094 | Re:求助:关于构造函数的问题 | liyan811101 | 39 | 2007-04-29 09:26 |
7645 | Re:求助:关于构造函数的问题 | clj_0118 | 45 | 2007-07-19 12:07 |
已读帖子 新的帖子 被删除的帖子 |
Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1 客服电话 18559299278 客服信箱 714923@qq.com 客服QQ 714923 |