gpt4 book ai didi

c++ - 比较两个时间戳

转载 作者:行者123 更新时间:2023-11-28 06:49:19 24 4
gpt4 key购买 nike

<分区>

我编写了以下非常简单的函数。当我比较两个 CTime 时,它​​似乎不起作用。我真的不知道出了什么问题,你能帮帮我吗?

bool operator<(CTime second)
{
if (year<second.getYear())
return true;
if (year>second.getYear())
return false;
if (year<second.getMonth())
return true;
If (year>second.getMonth())
return false;
if (year<second.getDay())
return true;
if (year>second.getDay())
return false;
if (year<second.getHour())
return true;
if (year>second.getHour())
return false;
if (year<second.getMin())
return true;
if (year>second.getMin())
return false;
if (year<second.getSec())
return true;
if (year>second.getSec())
return false;
return false;
}

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