seeg 在 while(file.good()) {....} 之后不起作用

发布于 2024-12-09 05:27:53 字数 396 浏览 2 评论 0原文

我对以下内容似乎不起作用感到相当不安。

while(myfile.good())
{   
    myfile.get(holdc);      
    ....................
}

//does not work 
myfile.seekg(0);
myfile.read(buffer,5);
sentence.push_back(buffer);
cout << buffer<<endl;
delete[] buffer;

我尝试过 myfile.close 等,甚至创建了一个新的 ifstream myfile2; 来重新加载文件。什么都不起作用。就好像这个 searchg 东西是通用的或者什么的,并且每个程序只能运行一次。

I'm fairly perturbed that the below does not appear to work.

while(myfile.good())
{   
    myfile.get(holdc);      
    ....................
}

//does not work 
myfile.seekg(0);
myfile.read(buffer,5);
sentence.push_back(buffer);
cout << buffer<<endl;
delete[] buffer;

I have tried myfile.close, etc., even creating a new ifstream myfile2; to reload the file. Nothing works. It's as if this seekg thing is universal or something, and works only once per program.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最好是你 2024-12-16 05:27:53

看来,就在

    while(myfile.good())
 {   
    myfile.get(holdc);      
    ....................
}

我需要做

myfile.clear();

之后,但是,我仍然需要知道如何继续通过新行并读取表单文件。第一行结束后,我得到随机符号。有人吗?

编辑**

发生的事情是我使用了动态数组字符缓冲区,需要用以下命令关闭它:

buffer[i] = 0;

it appears, right after

    while(myfile.good())
 {   
    myfile.get(holdc);      
    ....................
}

I need to do

myfile.clear();

However, I still need to know how to go ahead through the new line and read form file. After the first line ends I get random symbols. Anyone?

edit**

What happened was I used a dynamic array char buffer, which needs to be closed with:

buffer[i] = 0;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文