各位大神帮忙看看 我这个java 哪有问题啊 我刚学 10
publicclassAirplane{StringplaneName;StringplaneType;intplanespeed;intdirection;inthig...
public class Airplane {
String planeName;
String planeType;
int planespeed;
int direction;
int high;
Airplane(String name,String type,int d,int h,int s){
planeName=name;planeType=type;planespeed=s;direction=d;high=h;}
private Airplane(String ffssfssf) {
throw new UnsupportedOperationException("Not yet implemented");
}
void highControl(int ch){
high=ch;
System.out.println("Changed high:"+ch);
}
void directionControl(int cd){
direction=cd;
System.out.println("Changed direction:"+cd);
}
void planespeedControl(int cs){
planespeed=cs;
System.out.println("Changed planespeed:"+cs);
}
public static void main(String[] args) {
Airplane CA2318= new Airplane("ffssfssf");
}
} 展开
String planeName;
String planeType;
int planespeed;
int direction;
int high;
Airplane(String name,String type,int d,int h,int s){
planeName=name;planeType=type;planespeed=s;direction=d;high=h;}
private Airplane(String ffssfssf) {
throw new UnsupportedOperationException("Not yet implemented");
}
void highControl(int ch){
high=ch;
System.out.println("Changed high:"+ch);
}
void directionControl(int cd){
direction=cd;
System.out.println("Changed direction:"+cd);
}
void planespeedControl(int cs){
planespeed=cs;
System.out.println("Changed planespeed:"+cs);
}
public static void main(String[] args) {
Airplane CA2318= new Airplane("ffssfssf");
}
} 展开
4个回答
展开全部
程序没有错,你看到的错误是应该你的代码
private Airplane(String ffssfssf) {
throw new UnsupportedOperationException("Not yet implemented");
}
你自己抛出了异常。没错的
private Airplane(String ffssfssf) {
throw new UnsupportedOperationException("Not yet implemented");
}
你自己抛出了异常。没错的
追问
可不可以详细解释一下啊 我刚学啊
追答
private Airplane(String ffssfssf) {
throw new UnsupportedOperationException("Not yet implemented");
}
注意这句 throw new UnsupportedOperationException("Not yet implemented");
你在main方法里new了一个对象,对吧,?你看看你调用的是不是用private修饰的构造方法,就是上面这个。在这个方法里你抛出了自己定义的异常,注意关键字throw。
当你new对象的时候,程序马上调用构造方法去构造对象,然后当然会执行到构造方法里面的内容。
如果你不想看到那个异常,就注释掉吧。
这样说你明白了吧?
展开全部
你的类构造函数最好加上public 前缀,否则你无法使用new
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Airplane CA2318= new Airplane("ffssfssf");使用了一个参数的构造器private Airplane(String ffssfssf),这个构造器会抛出Not yet implemented的异常。如果使用五个参数的构造器创建对象就没有问题了。
我想这个例子的用意是练习使用不同构造器创建对象,并且对于尚未实现的构造器抛出异常两个功能点。
我想这个例子的用意是练习使用不同构造器创建对象,并且对于尚未实现的构造器抛出异常两个功能点。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询