将 static_cast 与 boost::bind 一起使用
我想将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 boost 强制转换函子
ll_static_cast()
Use the boost cast functor
ll_static_cast<K>()
除非没有从 T 到 K 的隐式转换,否则不需要静态强制转换。如果转换构造函数不显式,或者如果您是 T::operator K(),则可以执行以下操作:
请注意,这会颠倒顺序元素也是如此。
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:
Note that this reverses the order of the elements as well.