是不是强制转换前必须得有自动转换,我又创建了cat对象,还是不能运行,但是前面加了句Animal animal=cat;后就可以转换了,但运行出现了一个错误
2017-09-22
从来没有认真想过类、对象、属性、方法之间的关系,比如:平常所写的方法,是类的方法,表明类可以做什么,而后才是通过对象调用此方法;当然了,再延伸出去的话,那就是类的继承关系了。
2017-09-21
public class HelloWorld {
static int score1 = 86;
int score2 = 92;
public static int sum() {
HelloWorld hw = new HelloWorld();
return hw.score2 + score1;
}
public static void main(String[] args) {
int allScore = sum();
System.out.println("总分:" + allScore);
}
}
static int score1 = 86;
int score2 = 92;
public static int sum() {
HelloWorld hw = new HelloWorld();
return hw.score2 + score1;
}
public static void main(String[] args) {
int allScore = sum();
System.out.println("总分:" + allScore);
}
}
2017-09-21
public class HelloWorld {
// 定义静态变量,保存班级名称
static String className = "JAVA开发一班";
public static void main(String[] args) {
// 访问静态变量,输出班级名称
System.out.println( HelloWorld.className );
}
}
// 定义静态变量,保存班级名称
static String className = "JAVA开发一班";
public static void main(String[] args) {
// 访问静态变量,输出班级名称
System.out.println( HelloWorld.className );
}
}
2017-09-21
System.out.println("输入的数据有误");
newScreen = 5f;//默认值应该赋给newScreen,而不是screen
newScreen = 5f;//默认值应该赋给newScreen,而不是screen
2017-09-20