码迷,mamicode.com
首页 > 其他好文 > 详细

abstract小练习

时间:2017-04-14 19:44:13      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:return   练习   rac   bst   car   end   pac   bsp   new   

package ab2;

public abstract class Vehicle {

    
    public abstract String nowheel();
}
package ab2;

public class Car extends Vehicle{

    public  String nowheel(){
        String l="四个轮子";
   return l;
    }
}
package ab2;

public class Mo extends Vehicle {
    public String nowheel(){
        String s="两个轮子";
        return  s;
    }

    
}
package ab2;

public class Test {
public static void main(String[] args) {
    Car c=new Car();
    System.out.println(c.nowheel());
    Mo m=new Mo();
    System.out.println(m.nowheel());
}
}

 

abstract小练习

标签:return   练习   rac   bst   car   end   pac   bsp   new   

原文地址:http://www.cnblogs.com/zyy1130/p/6710326.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!