VerySource

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 764|回复: 2

求助!!!!

[复制链接]

2

主题

4

帖子

5.00

积分

新手上路

Rank: 1

积分
5.00
发表于 2020-3-1 13:00:02 | 显示全部楼层 |阅读模式
#include<iostream.h>
class Vehicle{
        public:
           Vehicle(double x)
           {
                      cost=x;
           }
           ~Vehicle(){}
           virtual void show()
           {
                     cout<<"I am a vehicle.";
           }
           virtual void costs()
           {
                     cout<<"Cost is"<<cost;
           }
        private:
               double cost;
};
class Car :public Vehicle{
        public:
           Car(double x)
           {
                      cost=x;
           }
           ~Car(){}
           void show()
           {
                     cout<<"I am a car.";
           }
           void costs()
           {
                      cout<<"Cost is"<<cost;                        
           }
        private:
           double cost;   
};
class Truck:public Vehicle{
        public:
           Truck(double x)
           {
                      cost=x;
           }
           ~Truck(){}
           void show()
           {
                     cout<<"I am a truck.";
           }
           void costs()
           {
                     cout<<"Cost is"<<cost;                        
           }
        private:
           double cost;   
};
void callcost(Vehicle &);
main()
{
        Vehicle vehi(1.5);
        callcost(vehi);
        Car c(3.8);
        callcost(c);
        Truck tr(5.8);
        callcost(tr);
        return 0;
}
void callcost(Vehicle & vehi)
{
        vehi.show();
        vehi.costs();
}

.cpp(22) : error C2512: 'Vehicle' : no appropriate default constructor available
Error executing cl.exe.
回复

使用道具 举报

0

主题

12

帖子

11.00

积分

新手上路

Rank: 1

积分
11.00
发表于 2020-5-11 08:00:01 | 显示全部楼层
#include "stdafx.h"
#include<iostream>
using namespace std;
class Vehicle{
        public:
           Vehicle(double x)
           {
                      cost=x;
           }
           Vehicle()
           {
                      cost=0;
           }
           ~Vehicle(){}
           virtual void show()
           {
                     cout<<"I am a vehicle.";
           }
           virtual void costs()
           {
                     cout<<"Cost is"<<cost;
           }
        private:
               double cost;
};
class Car :public Vehicle{
        public:
           Car(double x)
           {
                      cost=x;
           }
           ~Car(){}
           void show()
           {
                     cout<<"I am a car.";
           }
           void costs()
           {
                      cout<<"Cost is"<<cost;                        
           }
        private:
           double cost;   
};
class Truck:public Vehicle{
        public:
           Truck(double x)
           {
                      cost=x;
           }
           ~Truck(){}
           void show()
           {
                     cout<<"I am a truck.";
           }
           void costs()
           {
                     cout<<"Cost is"<<cost;                        
           }
        private:
           double cost;   
};
void callcost(Vehicle &);
int main()
{
        Vehicle vehi(1.5);
        callcost(vehi);
        Car c(3.8);
        callcost(c);
        Truck tr(5.8);
        callcost(tr);
        return 0;
}
void callcost(Vehicle & vehi)
{
        vehi.show();
        vehi.costs();
}
回复

使用道具 举报

0

主题

63

帖子

43.00

积分

新手上路

Rank: 1

积分
43.00
发表于 2020-5-12 11:30:01 | 显示全部楼层
缺少缺省構造函數
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|CopyRight © 2008-2023|verysource.com ( 京ICP备17048824号-1 )

快速回复 返回顶部 返回列表