gpt4 book ai didi

具有其他类数据类型的 C++ 构造函数

转载 作者:太空宇宙 更新时间:2023-11-04 11:44:11 24 4
gpt4 key购买 nike

首先大家好

我是这个论坛的新手,所以我希望我没有犯任何新手错误,如果是的话 - 请纠正我 :)。第二:英语不是我的母语,所以我希望我能把我的问题说清楚。

关于我的问题:

我必须编写一个包含 2 个类的 C++ 程序,第 1 类日期和 3x unsigned int 用于日、月和年,以及 2 类时间和 2x unsigned int 用于分钟和小时,以及 1x 日期。

  • 每个类都有一个调用重载构造函数的默认构造函数(我们必须使用初始化列表)我的问题是,我无法弄清楚如何在我的 Time 类中使用 Date 类的成员。

我知道我的问题不是很清楚,所以这里是我的代码的简化版本:主要:

#include "Date.hpp"
#include "Time.hpp" //(+ iomanip / iostream)

int main(){
Date d1; //Calls Default Constructor of class Date, which initialises with (1,1,2000)
Time t1(d1,23,30); //should call ovrld-constr. of class Time and keep the date of d1

在我的“Time.cpp”中,我试过类似的东西:

Time::Time(Date x, unsigned int y, unsigned int z)
: d(Date::Date(x)), minute(y), hour(z) //try to call the def constr of class Date
{
return;
}

Time::Time() : Time(Date::Date(), 00, 00) //should call the ovrld constr of class Time
{
return;
}

但当然它不起作用......编译器总是说:

main.cpp:(.text+0x35c):undefined reference to `Time::Time()'

如果有帮助,这里是我的(完全有效的)“Date.cpp”的摘录:

Date::Date(unsigned int x, unsigned int y, unsigned int z)
: day(x), month(y), year(z)
{
if(valiDate(day, month, year)==false){ //ValiDate is a function which checks the input
day=1;month=1;year=2000;} //default date, if Date is not Valid
return;
}

Date::Date() : Date(1,1,2000)
{
return;
}

我希望这足以让我的问题清楚,如果没有,我可以随时向您展示完整的源代码。重要说明:我不允许(!)编辑 main.cpp。另外,如果有人可以解释我的错误而不是仅仅发布一个完整的解决方案,我将不胜感激,因为我认为我 - 在最坏的情况下 - 甚至不理解的解决方案对我的学习没有多大帮助.

在此先感谢您的帮助,

最好的问候。

编辑:

对不起,我忘记了两个 class.hpp。

1)The working Date.hpp (extract)

class Date
{

public:
Date();
Date(unsigned int, unsigned int, unsigned int);


private:

unsigned int day, month, year;
bool valiDate(unsigned int, unsigned int, unsigned int);
};

2) 我的(不工作)Time.hpp。

class Time
{

public:

Time();
Time(Date, unsigned int, unsigned int);

private:

unsigned int minute, hour;
Date d;

};

最佳答案

我重现了你的项目,发现了几十个编译和链接错误,但没有出现你指定的错误。这是我找到的:

class Time 包含一个 Date by value 类型的数据成员,因此您需要在 Time.hpp 中#include Date.hpp。如果您还没有这样做,则需要添加 include guards到你的标题。

您不需要在 Time 的成员初始值设定项中显式指定 Date 构造函数,因为无论如何都会调用它:

Time::Time(Date x, unsigned int y, unsigned int z)
: d(Date::Date(x)), minute(y), hour(z) //try to call the def constr of class Date
{
return;
}

可以是:

Time::Time(Date x, unsigned int y, unsigned int z)
: d(x), minute(y), hour(z)
{

}

请注意,您也不需要在构造函数中编写 return 语句。还要注意 : d(x) 调用 Date 的复制构造函数,而不是默认构造函数。您尚未定义复制构造函数,因此正在为您隐式创建一个复制构造函数以执行浅拷贝。

您还从一个构造函数调用另一个构造函数:

Time::Time() : Time(Date::Date(), 00, 00)
Date::Date() : Date(1,1,2000)

委托(delegate)构造函数在 C++11 中受支持,但尚未被所有编译器支持,但您可以自己初始化成员:

Time::Time() : minute(0),hour(0)
Date::Date() : day(1),month(1),year(2000)

关于具有其他类数据类型的 C++ 构造函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20314754/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com