-3
#include <iostream>
#include <fstream>
#include <vector>
#include <string>
using namespace std;
int main() {
int number_of_lines = 0;
string line;
vector<double> prices;
ifstream myfile("SPY.txt");
ifstream input("SPY.txt");
double data;
while (std::getline(myfile, line))
++number_of_lines;
for (int z = 0; z != number_of_lines; z++) {
input >> data;
prices.push_back(data);
cout << prices[z] << endl;
}
system("pause");
return 0;
}
上述代碼如何縮短但輸出結果相同?如果有更有效的方式來編寫佔用更少內存或空間的代碼,請讓我知道。該代碼如何縮短以獲得相同的結果?
詢問http://codereview.stackexchange.com/ – StoryTeller
您只需要一個文件流,而且不需要'number_of_lines'和'z'。 –
如果您打算進行2次通過,您需要重新設置文件指針並清除流狀態,然後再次讀取。 –