使用 sscanf 来增加日期

发布于 2024-12-02 23:03:58 字数 311 浏览 0 评论 0原文

我正在尝试使用 sscanf 来分隔具有提升日期的字符串。这是代码:

 std::sscanf(ss.c_str(),"%ls\t%lf\t%lf",&date1_,&num1_,&num2_);

我收到以下错误:

 warning: format ‘%ls’ expects type ‘wchar_t*’, but argument 3 has type ‘boost::gregorian::date*’

任何人都可以建议我解决此问题。谢谢!

I am trying to use sscanf to separate a string that has a boost date. here's the code:

 std::sscanf(ss.c_str(),"%ls\t%lf\t%lf",&date1_,&num1_,&num2_);

and I get the following error:

 warning: format ‘%ls’ expects type ‘wchar_t*’, but argument 3 has type ‘boost::gregorian::date*’

can anyone suggest me a fix for this. thx!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情绪失控 2024-12-09 23:03:58

不能这样做。 sscanf 是一个 C 函数,只能读取基本类型,不能读取类类型。

在 C++ 中,用于读取/写入类类型的枪是“流”,并出现在 标头中。如果您使用的 Boost 库的作者足够好心地重载此类的 operator<<operator>>,它们就会起作用。

如果没有,那么最好的办法是逐一读取日期字段(作为基本类型),然后使用其构造函数创建一个 boost::gregorian::date 对象。

It cannot be done this way. sscanf is a C function and can only read primitive types, not class types.

In C++ the guns for reading/writing class types are "streams" and come in <iostream> and <sstream> headers. They will work if the authors of the Boost library you're using were kind enough to overload operator<< and operator>> for this class.

If the didn't, then your best shot is to read the date fields (as basic types) one-by-one and then create a boost::gregorian::date object using its constructor.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文