将 static_cast 与 boost::bind 一起使用

发布于 2024-09-13 19:58:18 字数 202 浏览 9 评论 0原文

我想将 T 类型的向量转换为 K 类型的向量。 我尝试了这个,但它不起作用:

transform(vec.rbegin(),vec.rend(),vecNew.begin(),boost::bind(static_cast<K>(),_1));

我收到错误:“在 ')' 标记之前需要主表达式”。我做错了什么?

I want to transform a vector of type T to a vectorof type K.
I tried this, but it doesn't work:

transform(vec.rbegin(),vec.rend(),vecNew.begin(),boost::bind(static_cast<K>(),_1));

I get the error: "expected primary-expression before ‘)’ token". What am I doing wrong?

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

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

发布评论

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

评论(2

伊面 2024-09-20 19:58:18

使用 boost 强制转换函子ll_static_cast()

Use the boost cast functor ll_static_cast<K>()

黯然#的苍凉 2024-09-20 19:58:18

除非没有从 T 到 K 的隐式转换,否则不需要静态强制转换。如果转换构造函数不显式,或者如果您是 T::operator K(),则可以执行以下操作:

transform(vec.rbegin(),vec.rend(),vecNew.begin());

请注意,这会颠倒顺序元素也是如此。

There's no need for the static cast unless there is no implicit conversion from T to K. If the conversion constructor is not explicit, or if you a T::operator K(), you can just do:

transform(vec.rbegin(),vec.rend(),vecNew.begin());

Note that this reverses the order of the elements as well.

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