2
你能告訴我,爲什麼這是錯的?stringstream到數組
我
mytype test[2];
stringsstream result;
int value;
for (int i=0; i<2; i++) {
result.str("");
(some calculating);
result<< value;
result>> test[i];
}
當我看試陣 - 只有第一個 - 試驗[0] - 有正確的值 - 每一個其他測試[1..X]的值爲0 爲什麼它的錯,而不是加工?在循環的第一次運行中,stringstream將正確的值設置爲數組,但稍後只有0?
感謝