这是我的代码
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
void main() {
string line;
ifstream myfile("C:\\Part1.txt");
int n = 0;
while (getline(myfile, line))
{
if (line != ""){
if (n > 8){
cout << line.substr(line.length() - (line.length()-27l)) << '\n';
}
}
n = n + 1;
}
myfile.close();
}
我收到错误:
类型&#39; System.Runtime.InteropServices.SEHException&#39;的第一次机会异常。发生在Network Controller.exe
中其他信息:外部组件引发了异常。
如果存在此异常的处理程序,则可以安全地继续该程序
我该怎么办?
答案 0 :(得分:2)
在阅读@Sebastian Redl的评论后,^,我认为这将解决您的问题:
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main() {
string line;
ifstream myfile;
int n = 0;
myfile.open("example.txt");
while (getline(myfile, line))
{
if (line != ""){
if (n > 8){
if (line.length() > 27)
cout << line.substr(line.length() - (line.length() - 27l)) << '\n';
}
}
n = n + 1;
}
myfile.close();
getchar();
return 0;
}