整数向量

发布于 2024-12-09 09:49:23 字数 356 浏览 0 评论 0原文

我想将向量转换为整数。我可以使用输出向量

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 技术交流群。

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

发布评论

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

评论(4

穿越时光隧道 2024-12-16 09:49:23

将其写入 stringstream,然后像这样读取:

std::stringstream strStream;
copy(iV.begin(),iV.end(),ostream_iterator<int>(strStream,""));
int myInt;
strStream >> myInt;

Write it out to stringstream and then read from it like so:

std::stringstream strStream;
copy(iV.begin(),iV.end(),ostream_iterator<int>(strStream,""));
int myInt;
strStream >> myInt;
妄司 2024-12-16 09:49:23

我不确定这是否是您的意思,但您可以这样做:

int * ip = &iv[0];

然后访问 ip[0]ip[1] 等。

I am not sure if that's what you mean, but you could do:

int * ip = &iv[0];

and then access ip[0], ip[1], etc.

眸中客 2024-12-16 09:49:23
int x;
for(vector<int>::const_iterator i = iV.begin(); i != iV.end(); i++)
    x = *i;
int x;
for(vector<int>::const_iterator i = iV.begin(); i != iV.end(); i++)
    x = *i;
因为看清所以看轻 2024-12-16 09:49:23

尝试这样的事情:

int total = 0;
for(vector<int>::const_iterator i = iV.begin(); i != iV.end(); ++i)
    total = total*10 + *i;

Try something like this:

int total = 0;
for(vector<int>::const_iterator i = iV.begin(); i != iV.end(); ++i)
    total = total*10 + *i;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文