經典的範例改編,忘記在哪看 可能有改編,只是記錄 以後要用方便來抄的
檔名是Text_name
收集的資料為: vector<std::int>& Sv
void Load_file_int(std::string Text_name, std::vector<int>& Sv) {
std::fstream fin;
Sv.clear();
char line[100];
fin.open(Text_name, std::ios::in);
while (fin.getline(line, sizeof(line), '\n')) {
Sv.push_back(atoi(line));
}
}
YA 打水飄 2周了 ~ 快沒梗了 ,還是來寫光電子學理論好了哈哈