当前位置: 技术问答>java相关
谁用过 JBuilder
来源: 互联网 发布时间:2015-05-22
本文导语: 我刚开始学用JBuilder 我的一个Applet2运行时出现以下提示: The applet temptest_project.Applet2 does not have a public constructor temptest_project.Applet2() 不能运行,我该怎么改动。 希望能得到大家的帮忙,谢谢。 | ...
我刚开始学用JBuilder
我的一个Applet2运行时出现以下提示:
The applet temptest_project.Applet2 does not have a public constructor temptest_project.Applet2()
不能运行,我该怎么改动。
希望能得到大家的帮忙,谢谢。
我的一个Applet2运行时出现以下提示:
The applet temptest_project.Applet2 does not have a public constructor temptest_project.Applet2()
不能运行,我该怎么改动。
希望能得到大家的帮忙,谢谢。
|
呵呵,你在别的地方一定这样调用过:Applet2 xxx = new Applet2();
你应该为它写一个无参构造函数。
public Applet2()
{}
如果有,就是你的作用域错了,把private改为public。
你应该为它写一个无参构造函数。
public Applet2()
{}
如果有,就是你的作用域错了,把private改为public。
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。