上一页 1 ··· 84 85 86 87 88 89 90 91 92 ··· 97 下一页
摘要: /*ca76a_c++_流文件打开输入输出文件模式利用文件流打开文件进行输入与输出时的选项in、out、app(附加模式)、ate((end)文件打开后,定于文件结尾)、trunc(裁剪)、binary(二进制)、、、、、文件模式组合outout|appout|truncinin|outint|ou 阅读全文
posted @ 2020-02-11 20:54 txwtech 阅读(278) 评论(0) 推荐(0) 编辑
摘要: /*ca75a_c++_标准IO库习题练习习题8.3,8.4,8.6习题8.9、8.10 ifstream inFile(fileName.c_str());1>d:\users\txwtech\projects\ca75a\ca75a\ca75a.cpp(28): error C2079: “in 阅读全文
posted @ 2020-02-11 19:37 txwtech 阅读(303) 评论(1) 推荐(0) 编辑
摘要: /*ca74a_c++__文件流对象的使用-用来读写文件将文件流对象绑定到文件上检查文件是否打开成功将文件流与新文件重新绑定清楚文件流的状态infile.close();//关闭流 infile.clear();//恢复流的状态,不然infile依然停留在infile.eof的位置。不能使用。eof 阅读全文
posted @ 2020-02-11 11:43 txwtech 阅读(309) 评论(0) 推荐(0) 编辑
摘要: /*ca73a_c++_流的条件状态strm::iostate strm::badbit //流的状态strm::failbit //输入的状态,应该输入数字,结果输入为字符,strm::eofbit s.eof()s.fail()s.bad()s.good()s.clear()////恢复流的状态 阅读全文
posted @ 2020-02-10 18:37 txwtech 阅读(221) 评论(0) 推荐(0) 编辑
摘要: /*ca72a_c++_标准IO库:面向对象的标准库继承:基类-》派生类3个头文件9个标准库类型IO对象不可复制或赋值 ofstream, f--file,文件输出流ostringstream,o--输出,string字符串输出流iostream--输入输出流 istringstream,i-输入, 阅读全文
posted @ 2020-02-10 16:49 txwtech 阅读(184) 评论(0) 推荐(0) 编辑
摘要: /*ca71a_c++_指向函数的指针_通过指针调用函数用typedef简化函数指针的定义简化前: bool(*pf)(const string&, const string &); bool(*pf2)(const string&, const string &); bool(*pf3)(cons 阅读全文
posted @ 2020-02-10 12:26 txwtech 阅读(283) 评论(0) 推荐(0) 编辑
摘要: /*ca70a_c++_重载函数_实参类型转换转换等级,详见P290 编译选择哪个函数版本呢?1.精确匹配2.通过类型提升3.通过标准转换4.通过类类型转换参数匹配和枚举类型重载和const形参 void f(int *p) { cout << "f(int *p)" << endl; }void 阅读全文
posted @ 2020-02-09 18:02 txwtech 阅读(162) 评论(0) 推荐(0) 编辑
摘要: /*ca69a.cpp_c++_函数匹配(重载确定)#重载确定的三个步骤1.候选函数2.选择可行函数3.寻找最佳匹配(如果有的话)#含有多个形参的重载确定 void f1();void f1(int);void f1(int,int);void f1(double,double = 3.14);f1 阅读全文
posted @ 2020-02-09 16:00 txwtech 阅读(245) 评论(0) 推荐(0) 编辑
摘要: /*ca33a_demo_c++33_CppPrimer_新旧代码的兼容_txwtech旧代码:数组和c风格字符串新代码:vector和string相互转换:c风格字符串<- ->string数组<- ->vector C3867错误。https://docs.microsoft.com/zh-cn 阅读全文
posted @ 2020-01-28 15:16 txwtech 阅读(284) 评论(1) 推荐(0) 编辑
摘要: //40_21days_Cpp_智能指针c++_cc40a_demo.cpp_txwtech //智能指针、auto_ptr类//*常规指针-容易产生内存泄漏,内存被占满,程序就死机,或者系统死机//*智能指针//-》自动动手设计智能指针--很难!// 深度复制、写时复制、引用计数、引用链接、//- 阅读全文
posted @ 2020-01-22 16:35 txwtech 阅读(177) 评论(0) 推荐(0) 编辑
上一页 1 ··· 84 85 86 87 88 89 90 91 92 ··· 97 下一页