为了账号安全,请及时绑定邮箱和手机立即绑定

请问为什么不允许复制字符串?

请问为什么不允许复制字符串?

C++
qq_笑_17 2019-10-22 17:12:53
为什么不允许复制字符串?int main(){    std::stringstream s1("This is my string.");    std::stringstream s2 = s1; // error, copying not allowed}我找不出为什么我不能复制弦流的原因。你能提供一些参考资料吗?
查看完整描述

3 回答

?
皈依舞

TA贡献1851条经验 获得超3个赞

要直接回答这个问题,您不能复制,因为字符串流类的复制构造函数被声明为私有。

可能是这样声明的,因为在大多数情况下复制流似乎很尴尬,所以流类中没有一个具有公共副本构造函数。



查看完整回答
反对 回复 2019-10-23
?
ibeautiful

TA贡献1993条经验 获得超5个赞

如上所述,您不能复制流,但如果需要,可以复制数据:

std::stringstream from;std::stringstream to;std::copy(std::istream_iterator<char>(from), std::istream_iterator<char>(),
          std::ostream_iterator<char>(to));


查看完整回答
反对 回复 2019-10-23
  • 3 回答
  • 0 关注
  • 394 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信