标签: java class subclass
假设我有两个类,Animal和Dog,其中Dog是Animal的子类。创建Dog对象时,我应该说
Animal
Dog
Dog dog = new Dog();
或
Animal dog = new Dog();
两个选项之间有区别吗?