花剌子模熙
2016-08-15 00:36
package imooc;
public class Initial {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
dog Dog=new dog();
animal Animal = Dog;
if (Animal instanceof dog){
dog Dog2=(dog)Animal;
}else{
System.out.print("无法转换");
}
}
}
代码没错和dog一样使用啊,另外最好类名大写,引用小写
Java入门第二季 升级版
530715 学习 · 6091 问题
相似问题