我想创建一个可以在jafaFX中访问的DogView类。
我不想改变现有的班级狗
public class Dog {
String breed;
int age;
String color;
void barking() { }
void hungry() { }
void sleeping() { }
}
那我该怎么办?
public class DogView extends Dos {
.... Is there a trick in Intellij Idea?
}