C++完美演绎 经典算法 如 /* 头文件:my_Include.h */ #include <stdio.h> /* 展开C语言的内建函数指令 */ #define PI 3.141
源代码在线查看: 11-7.txt
/* 范例:11-7 */
#include
void main()
{
ofstream out_file("out.txt"); // # 1 if(变更out.txt属性只读,隐藏)
out_file out_file.put('B').put('o').put('y'); // # 2如同cout.put(ch)...
cout out_file.close(); // # 3
ifstream in_file("out.txt"); // # 4 if(变更为不存在文件,out1.txt)
cout cout cout in_file.close(); // # 8
getchar();
}
程序执行结果:(依 #1、#4 设定而不同,两者皆成功时,结果如下)
out_file.is_open()=1
in_file.is_open()=1
in_file.fail()=0
My name is Peipei.
Boy