我们可以在 C++ 运算符中使用 SPL 时间函数吗?

Can we use SPL time functions inside C++ operators?

我想在 cpp.So 中使用 toTimestamp 函数 我正在像 SPL::Functions::time::toTimestamp(Sys.YYYYMMDDhhmmss,date) 一样访问它。问题是它无法识别 'Sys'。我应该包括什么库?

因为 toTimestamp 系列函数被设计为由 SPL 代码调用,所以在 C++ 中直接使用它们并不容易。 (原因是它们依赖于生成的元组和枚举类型。)在 C++ 中,使用 timeStringToTimestamp 函数族更容易。