QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 817|回复: 2

<fstream>是线程安全的吗?

[复制链接]
发表于 2005-6-23 18:15:33 | 显示全部楼层 |阅读模式
rt
发表于 2005-6-23 19:31:19 | 显示全部楼层
[code:1]#include <iostream>  
#include <fstream>  
using namespace std;  
int main()   
{  
    fstream myfile;  
    myfile.open("c:\\1.txt",ios::out|ios::app,0);  
    if(!myfile)  
    {  
        cout<<"文件写错误,文件属性可能为只读!"<<endl;  
        system("pause");  
        exit(1);  
    }  
    myfile<<"中国软件开发实验室"<<endl<<"网址:"<<"www.cndev-lab.com"<<endl;   
    myfile.close();  
  
    myfile.open("c:\\1.txt",ios::in,0);  
    if(!myfile)  
    {  
        cout<<"文件读错误,文件可能丢失!"<<endl;  
        system("pause");  
        exit(1);  
    }  
    char ch;  
    while(myfile.get(ch))  
    {  
        cout.put(ch);  
    }  
    myfile.close();  
    system("pause");  
}[/code:1]
回复

使用道具 举报

发表于 2005-6-23 20:04:21 | 显示全部楼层
STL不是线程安全的吧!
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

GMT+8, 2024-11-5 19:33 , Processed in 0.051352 second(s), 15 queries .

© 2021 Powered by Discuz! X3.5.

快速回复 返回顶部 返回列表