Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有一种既定的方法可以将字符串解析为时间结构?
我最理想的做法是strftime(...)与
strftime(...)
我不希望通过包含 DateTime 类(例如 Boost 或 .NET 中的类)来增加额外的开销
对应的解析字符串的方法struct tm *是strptime.
struct tm *
strptime
不幸的是,这不是标准 C 运行时库的一部分,也不存在于例如 windows 上,但您可以重用 BSD 许可的版本,例如这个.