我有一個程序,只是像這樣添加兩個向量v1和v2:v1 + = v2。在每次迭代中,v2都被添加到v1中。考慮下面的程序:矢量的怪異行爲?
#include <iostream>
#include <vector>
#include <iterator>
using namespace std;
typedef vector<double> v_t;
int main(){
v_t v1;
v_t v2;
for (int i = 1; i<10; i++){
v1.push_back(i);
v2.push_back(i);
if (i == 5){ // Just want to insert a 0 inbetween
v1.push_back(0);
v2.push_back(0);
}
}
// v1 : 1 2 3 4 5 0 6 7 8 9
// v2 : 1 2 3 4 5 0 6 7 8 9
v_t::iterator it2(v2.begin());
for(v_t::iterator it(v1.begin()), end(v1.end()); it != end;)
*(it++) += *(it2++);
copy(v1.begin(), v1.end(), ostream_iterator<double>(cout, " "));
cout << endl;
}
程序的輸出是:
2 4 6 8 10 0 12 14 16 18 // This is correct and what I need
,但如果我修改for循環是這樣的:
.
.
.
v_t::iterator it2(v2.begin());
for(v_t::iterator it(v1.begin()), end(v1.end()); it != end && (*(it++) += *(it2++)););
copy(v1.begin(), v1.end(), ostream_iterator<double>(cout, " "));
cout << endl;
}
現在輸出的是:
2 4 6 8 10 0 6 7 8 9
即每當遇到ters 0在它停止添加的兩個向量中的相同位置。爲什麼?超過0不會標記任何矢量的結束,是嗎?這也是一種價值。
如果您覺得它沒有意義,請隨時編輯我的問題的標題。
+1 from myself :) – 2011-01-21 17:16:45