一个Java小程序 给看看哪里错了 谢谢 新手刚学的
编译通过运行出现以下错误提示:java.lang.NoSuchMethodError:mainExceptioninthread"main"***************...
编译通过 运行出现以下错误提示:
java.lang.NoSuchMethodError: main
Exception in thread "main"
**********************************************知道的说下 谢谢了
public class Good
{
String gname;
int gid;
int gprice;
Good(String name,int id,int price)
{
gname=name;
gid=id;
gprice=price;
}
void print()
{ System.out.println("商品名:"+gname+" 序号:"+gid+" 价格:"+gprice);}
}
//应用继承
class Good1 extends Good
{
String gadder;
Good1(String x,int y,int z,String aa)
{
super(x,y,z);
gadder=aa;
}
}
//多层继承
class Good2 extends Good1
{
String factory;
Good2(String x,int y,int z,String l,String n)
{
super(x,y,z,l);
factory=n;
}
}
class text
{
public static void main(String[] args)
{
Good2 a1=new Good2("篮球",1001,23,"好混超市","正统公司");
a1.print();
}
} 展开
java.lang.NoSuchMethodError: main
Exception in thread "main"
**********************************************知道的说下 谢谢了
public class Good
{
String gname;
int gid;
int gprice;
Good(String name,int id,int price)
{
gname=name;
gid=id;
gprice=price;
}
void print()
{ System.out.println("商品名:"+gname+" 序号:"+gid+" 价格:"+gprice);}
}
//应用继承
class Good1 extends Good
{
String gadder;
Good1(String x,int y,int z,String aa)
{
super(x,y,z);
gadder=aa;
}
}
//多层继承
class Good2 extends Good1
{
String factory;
Good2(String x,int y,int z,String l,String n)
{
super(x,y,z,l);
factory=n;
}
}
class text
{
public static void main(String[] args)
{
Good2 a1=new Good2("篮球",1001,23,"好混超市","正统公司");
a1.print();
}
} 展开
5个回答
展开全部
你把public class Good该 成class Good就可以了。
如果你非要用public,那么就用下面这种格式:
class text
{
public static class Good
{
String gname;
int gid;
int gprice;
Good(String name,int id,int price)
{
gname=name;
gid=id;
gprice=price;
}
void print()
{ System.out.println("商品名:"+gname+" 序号:"+gid+" 价格:"+gprice);}
}
//应用继承
static class Good1 extends Good
{
String gadder;
Good1(String x,int y,int z,String aa)
{
super(x,y,z);
gadder=aa;
}
}
//多层继承
static class Good2 extends Good1
{
String factory;
Good2(String x,int y,int z,String l,String n)
{
super(x,y,z,l);
factory=n;
}
}
public static void main(String[] args)
{
Good2 a1=new Good2("篮球",1001,23,"好混超市","正统公司");
a1.print();
}
}class text
{
public static class Good
{
String gname;
int gid;
int gprice;
Good(String name,int id,int price)
{
gname=name;
gid=id;
gprice=price;
}
void print()
{ System.out.println("商品名:"+gname+" 序号:"+gid+" 价格:"+gprice);}
}
//应用继承
static class Good1 extends Good
{
String gadder;
Good1(String x,int y,int z,String aa)
{
super(x,y,z);
gadder=aa;
}
}
//多层继承
static class Good2 extends Good1
{
String factory;
Good2(String x,int y,int z,String l,String n)
{
super(x,y,z,l);
factory=n;
}
}
public static void main(String[] args)
{
Good2 a1=new Good2("篮球",1001,23,"好混超市","正统公司");
a1.print();
}
}
如果你非要用public,那么就用下面这种格式:
class text
{
public static class Good
{
String gname;
int gid;
int gprice;
Good(String name,int id,int price)
{
gname=name;
gid=id;
gprice=price;
}
void print()
{ System.out.println("商品名:"+gname+" 序号:"+gid+" 价格:"+gprice);}
}
//应用继承
static class Good1 extends Good
{
String gadder;
Good1(String x,int y,int z,String aa)
{
super(x,y,z);
gadder=aa;
}
}
//多层继承
static class Good2 extends Good1
{
String factory;
Good2(String x,int y,int z,String l,String n)
{
super(x,y,z,l);
factory=n;
}
}
public static void main(String[] args)
{
Good2 a1=new Good2("篮球",1001,23,"好混超市","正统公司");
a1.print();
}
}class text
{
public static class Good
{
String gname;
int gid;
int gprice;
Good(String name,int id,int price)
{
gname=name;
gid=id;
gprice=price;
}
void print()
{ System.out.println("商品名:"+gname+" 序号:"+gid+" 价格:"+gprice);}
}
//应用继承
static class Good1 extends Good
{
String gadder;
Good1(String x,int y,int z,String aa)
{
super(x,y,z);
gadder=aa;
}
}
//多层继承
static class Good2 extends Good1
{
String factory;
Good2(String x,int y,int z,String l,String n)
{
super(x,y,z,l);
factory=n;
}
}
public static void main(String[] args)
{
Good2 a1=new Good2("篮球",1001,23,"好混超市","正统公司");
a1.print();
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
如果你的一个java文件里面有多个类得话,那么,main方法必须放在public声明的那个类里面,在这里也就是Good这个类里面。 你可以去掉Good这个类的public,而在Test类的前面加上public(注意:一个java文件里面只能有一个public声明的类!!!)。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
程序没有问题,应该是你运行的时候的问题..要先把每个都编译了,然后再运行text 这个程序.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
main方法放在 Good类里面就可以,不需要text类 。你现在main放进了text,程序没办法找到入口
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
没有找到你的main方法 把它放在Good类中
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询