怎么我这代码运行不了!

问题描述

importjava.awt.*;publicclassT1extendsFrame{publicstaticvoidmain(String[]args){T1fr=newT1("HelloOutThere!");fr.addWindowListener(newWindowAdapter(){publicvoidwindowClosing(WindowEvente){System.exit(0);}});fr.setSize(200,200);fr.setBackground(Color.red);fr.setVisible(true);}

解决方案

解决方案二:
T1fr=newT1("HelloOutThere!");你在你继承类T1里面没有写带参数的构造方法吧?你想调用父类的构造方法应该写成:T1fr=newFrame("HelloOutThere!");
解决方案三:
忘记了一点,前面类型应该是:Framefr=newFrame("HelloOutThere!");另外你还要引入相关包:importjava.awt.event.WindowAdapter;importjava.awt.event.WindowEvent;
解决方案四:
稍微帮你修改了一下,追加了一下构造方法,代码如下importjava.awt.Color;importjava.awt.Frame;importjava.awt.event.WindowAdapter;importjava.awt.event.WindowEvent;publicclassT1extendsFrame{publicT1(Stringstring){}/***@paramargs*/publicstaticvoidmain(String[]args){T1fr=newT1("HelloOutThere!");fr.addWindowListener(newWindowAdapter(){publicvoidwindowClosing(WindowEvente){System.exit(0);}});fr.setSize(200,200);fr.setBackground(Color.red);fr.setVisible(true);}}

解决方案五:
要加一个带参构造方法publicT1(Stringstring){super(string);}

解决方案六:
综合一下上面两位的意见,把代码改成这样。importjava.awt.Color;importjava.awt.Frame;importjava.awt.event.WindowAdapter;importjava.awt.event.WindowEvent;publicclassT1extendsFrame{publicT1(StringfName){super(fName);}/***@paramargs*/publicstaticvoidmain(String[]args){T1fr=newT1("HelloOutThere!");fr.addWindowListener(newWindowAdapter(){publicvoidwindowClosing(WindowEvente){System.exit(0);}});fr.setSize(200,200);fr.setBackground(Color.red);fr.setVisible(true);}}

解决方案七:
引用1楼yangjianhui123的回复:

T1fr=newT1("HelloOutThere!");你在你继承类T1里面没有写带参数的构造方法吧?你想调用父类的构造方法应该写成:T1fr=newFrame("HelloOutThere!");

引用4楼sunyiz的回复:

要加一个带参构造方法JavacodepublicT1(Stringstring){super(string);}

+1
解决方案八:
6楼头像好漂亮.
解决方案九:
importjava.awt.event.*;importjava.awt.*;publicclassHelloextendsFrame{publicHello(){}publicHello(Strings){this.setTitle(s);}publicstaticvoidmain(String[]args){Hellofr=newHello("HelloOutThere!");fr.addWindowListener(newWindowAdapter(){publicvoidwindowClosing(WindowEvente){System.exit(0);}});fr.setSize(200,200);fr.setBackground(Color.red);fr.setVisible(true);}}这个没问题
解决方案十:
是唉,我发现现在的头像不能换了的
解决方案十一:
不知道怎么回事的
解决方案十二:
该回复于2010-12-21 09:16:53被版主删除
解决方案十三:
importjava.awt.*;publicclassT1extendsFrame{publicstaticvoidmain(String[]args){T1fr=newT1("HelloOutThere!");fr.addWindowListener(newWindowAdapter(){publicvoidwindowClosing(WindowEvente){System.exit(0);}});fr.setSize(200,200);fr.setBackground(Color.red);fr.setVisible(true);}
解决方案十四:
importjava.awt.*;importjava.awt.event.WindowAdapter;importjava.awt.event.WindowEvent;publicclassT1extendsFrame{publicT1(Stringstring){//TODO自动生成构造函数存根}publicstaticvoidmain(String[]args){T1fr=newT1("HelloOutThere!");fr.addWindowListener(newWindowAdapter(){publicvoidwindowClosing(WindowEvente){System.exit(0);}});fr.setSize(200,200);fr.setBackground(Color.red);fr.setVisible(true);}}以上是正确的代码,需要重写String方法和导入java.awt.event.WindowAdapter和java.awt.event.WindowEvent;
解决方案十五:
该回复于2010-12-21 09:46:32被版主删除

时间: 2024-12-30 21:07:11

怎么我这代码运行不了!的相关文章

IOS代码运行的磨刀石-预编译指令

IOS中代码运行的磨刀石--预编译指令 所谓预编译,就是程序代码在编译之前,开发工具为我们预先做的一些工作.不要小瞧这些指令,没有它们,我们的代码可能寸步难行. 一.文件包含相关预处理命令 #include <header> #include "header" C语言中使用的包含文件的指令""和<>的区别为,""是从当前目录开始寻找文件,<>是从系统库中寻找文件.这两个指令不能使头文件循环引入,也不能重复包含同

Discuz论坛NT版(2.6.1)代码运行框的实现方法

给Discuz!NT 论坛加上脚本代码运行框的方法,可以直接在论坛使用[html][/html]插入脚本特效的方法. 在做阿里西西论坛http://bbs.alixixi.com时,需要给帖子加入脚本运行框的代码.相关的资料还是很难找. DZ官方论坛不提供相关的脚本运行框插件,网上公开的也只有PHP版的解决方法,而且还有很多问题. 研究了半天,终于找到解决方法,最终实现的效果如下,可以支持多个脚本运行框: 经过全面调试,完全支持所有脚本调试功能. 方法如下: 1.进入DZ!NT后台>>贴子&g

c++-C++ 迷宫问题,代码运行除了正确结果却提示出错

问题描述 C++ 迷宫问题,代码运行除了正确结果却提示出错 代码如下: #include<iostream>using namespace std;int main(){ //矩阵初始化 int **migong; int h w; int m n; cout << ""请输入迷宫高度h和迷宫宽度w:"" << endl; cin >> h >> w; migong = new int *[h]; for

图片-大神,我这代码运行时为什么出错?

问题描述 大神,我这代码运行时为什么出错? #include #include #include struct sport { char sex,athname[10]; char itemtype,itemname[10]; int itemrank,itemnum,mgrade,wgrade; }ath[2]; struct school { int num; char name[10]; struct sport ath[2]; //int score; }sch[2]; void xue

求各大神帮忙,有关html代码运行的小问题?

问题描述 求各大神帮忙,有关html代码运行的小问题? 我在用wordpad++写了html代码后,点击默认浏览器运行,却总是没有任何反应.我已经将默认浏览器改为谷歌浏览器了,只是默认的是搜狗,那个运行选项里面貌似没有搜狗的???? 解决方案 代码呢,没反应肯定是你脚本编写有问题了,或者使用到了null对象 f12打开谷歌开发工具看报什么错误 解决方案二: 那你这个代码是以什么格式保存的. 解决方案三: .html 文件保存格式为html 代码没错的话就是格式不对

为什么这个代码运行的时候不报错,但是对方计算机收不到消息?请问是VC++没有编译么?

问题描述 为什么这个代码运行的时候不报错,但是对方计算机收不到消息?请问是VC++没有编译么? 为什么这个代码运行的时候不报错,但是对方计算机收不到消息?请问是VC++没有编译么? 解决方案 哪里来的程序,什么代码.有没有说明文档,是不是防火墙限制了. 解决方案二: 你的代码发送的消息是否正确发送过去了,是否有收到

java 代码运行异常在eclipse

问题描述 java 代码运行异常在eclipse package come1; import java.util.Vector; import javax.swing.JFrame; import javax.swing.JScrollPane; import javax.swing.JTable; public class Test1 extends JFrame{ Vector rowData,columnNames; JTable jt=null; JScrollPane jsp=null

指针-车辆检测的代码运行有错误

问题描述 车辆检测的代码运行有错误 报错如图,应该是那个指针的问题?那应该怎么改? 解决方案 可能是pCapture 解决方案二: 建议用gdb或者cout去输出一下看看,或者调整一下输入的大小,一般这种程序为了效率,内存都是分配一块很长的连续内存,如果输入太大或者太小很容易会操作敏感区域的内存.有时候输入很大,超出限制之后,分配的内存会从0开始,一下就内存错误了.

Swift学习笔记(一)搭配环境以及代码运行成功

原文:Swift学习笔记(一)搭配环境以及代码运行成功 1.Swift是啥? 百度去!度娘告诉你它是苹果最新推出的编程语言,比c,c++,objc要高效简单.能够开发ios,mac相关的app哦!是苹果以后大力推广的语言哦!   2.Swift给你带来什么机会? 当初你觉得objc太难,学ios学到一半放弃拉,或者进入it行业大家都搞android,你也搞android去了.现在你终于有机会和搞ios的站在一个语言的起跑线上,兄弟!swift传说很容易学哦,搞android的你想不想增加一下本领

大神帮忙看下面代码运行后怎么写入txt文件????

问题描述 大神帮忙看下面代码运行后怎么写入txt文件???? #include #include #include #include #include //输入/输出文件流类 using namespace std; const int Maxr=100;//最多的读者 const int Maxb=100;//最多的图书 const int Maxbor=5;//每位读者最多借五本书 //读者类,实现对读者的信息的描述 class Reader { private: int tag; //删除