初始化接口的已实现类的适当方法是什么(由某些逻辑确定)
例
IAnaimal is an interface
Cat -> IAnimal
Dog -> IAnimal
Cow -> IAnimal
int x = in.nextInt();
IAnimal animal = null;
if(x==1)
animal = new Dog();
else if(x==2)
animal = new Cat();
else
animal = new Cow();
animal.destroyManKind();
这是正确的方法吗?有没有“更”专业的方式来做到这一点?
最佳答案
我可以使用一种更简洁的方式来读取名称,而不是1、2和3,但是在这种情况下可以使用开关。
int choice = in.nextInt();
switch(choice) {
case 1: animal = new Dog(); break;
case 2: animal = new Cat(); break;
default: animal = new Cow(); break;
}
或使用字符串开关
String choice = in.next();
switch(choice.toLowerCase()) {
case "dog": animal = new Dog(); break;
case "cat": animal = new Cat(); break;
case "cow": animal = new Cow(); break;
default: // error
}
关于java - Java初始化子类,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14126263/