- <p> 写了一个 ,可以参考一下:</p><p>public class ExtendsDemo
- {
- public static void main(String[] args) {
- Cat cc = new Cat();
- cc.jiao();
-
- Dog dd = new Dog();
- dd.jiao();
- }
- }
-
- abstract class Animal
- {
- public abstract void jiao();
- }
-
- class Cat extends Animal {
-
-
- public void jiao() {
- System.out.println("喵喵");
- }
-
- }
- class Dog extends Animal {
-
- public void jiao() {
- System.out.println("汪汪");
- }
- }</p>
复制代码
一个类中只能有一个public 类, 而且 你这样写程序不规范哦,你出错的原因我估计是因为你用的是Eclipse,刚开始建议先用简单的IDE,像EditPlus或者UE手敲.如果你要用Eclipse,每次新建类的时候,应该把这个去掉,如图:
还有建议类名要大写, 加油!
|