如何检查 CPP 中的日期时间对象是否为空

How to check if datetime object in CPP is null or not

我在我的摘要 class(头文件)中使用 std::chrono::system_clock::time_point; 这个。

我的代码如下

using datetime = std::chrono::system_clock::time_point;

class 

datetime _endDate;

现在在我的 cpp 文件中,我想检查它的值是否与 epoch 不同。我该怎么做?

我按照评论区说的做了

我用了_endDate != datetime{}