整数向量
我想将向量转换为整数。我可以使用输出向量
vector <int> iV;
iV.push_back(3);
iV.push_back(8);
iV.push_back(6);
copy(iV.begin(),iV.end(),ostream_iterator<int>(cout,""))
但是如何将其转换为 int?
编辑:使用 stringstream 对于我正在做的事情效果很好。 我确实想通过 cout 看看它到底是什么样子。 我不想要精确的 int 一个 int 我的意思是一个 int,所以对于我的例子来说它将是一个等于 386 的 int。 感谢大家的帮助,真的很感激。
I'd like to convert a vector to an integer. I can output the vector using
vector <int> iV;
iV.push_back(3);
iV.push_back(8);
iV.push_back(6);
copy(iV.begin(),iV.end(),ostream_iterator<int>(cout,""))
But how can I get this to an int?
EDIT: Using stringstream works fine for what I'm doing.
I did want to see exactly what it looked like via cout.
I didn't want exact int by int I meant one single int so for my example it would be an int equaling 386.
Thanks everyone for there help really appreciate it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
将其写入 stringstream,然后像这样读取:
Write it out to stringstream and then read from it like so:
我不确定这是否是您的意思,但您可以这样做:
然后访问
ip[0]
、ip[1]
等。I am not sure if that's what you mean, but you could do:
and then access
ip[0]
,ip[1]
, etc.尝试这样的事情:
Try something like this: