问答详情
源自:12-2 项目问题解析 1

最后一个答答打车系统小项目

car.java的内容是啥?是抽象类吗无方法?

提问者:MT灬柴郡 2017-10-18 16:20

个回答

  • qq_Ambition_21
    2017-10-19 10:06:47

    自己也可以写一个方法

    //父类   车
    public  class Vehicle {
        //车的类型
        protected String type;
        //车的租金
        protected float price;
        //构造函数
        public Vehicle(String type,float price){
            
            this.type=type;
            this.price=price;
            
        }
        //显示信息
        public  String ShowInfo(){
            
            String Show = String.format("");
        
            return Show;
            
        }

    }

    我是这样写的   在子类中重写父类showInfo 方法   类似于C#的虚方法   在Java中不需要写Virtual   系统自动分配  在子类直接重写就可以 不需要任何关键字   方法名一样 返回值一样