摘要:
通过static可以作用的对象,分为:局部静态变量、静态函数、全局静态变量、静态成员变量、静态成员函数、静态类(值得考究)1、局部静态变量函数内部使用的格式:static 类型 对象名;View Code 1 #include <iostream> 2 using namespace std; 3 4 void fun() 5 { 6 static int i = 1; 7 cout << i << endl; 8 i++; 9 } 10 void main() 11 { 12 fun(); 13 14 fun(); 15 }输出:1 \n 2局部静态变量, 阅读全文
摘要:
使用c++的fstream头文件中的两个类完成文件操作:ofstream(写入) ifstream(读出),简单且方便。示例代码:View Code 1 #include <iostream> 2 #include <fstream> 3 #include <string> 4 using namespace std; 5 6 void main() 7 { 8 ofstream ofs("E:\\xx.txt"); // 创建写入文件 9 ofs << "sss" << endl; 10 11 阅读全文