2015年3月21日

对象2 构造,析构

摘要: #include #include #include class StoreQuote{public: std::string quote, speaker; std::ofstream fileOutput; StoreQuote(); ~StoreQuote(); ... 阅读全文

posted @ 2015-03-21 23:42 雨渐渐 阅读(207) 评论(0) 推荐(0) 编辑

对象 1 作用域解析符 ::

摘要: 1 对象举例#include using namespace std;class Car {public: string color; string engine; float gas_tank; unsigned int wheel; void running(voi... 阅读全文

posted @ 2015-03-21 22:10 雨渐渐 阅读(316) 评论(0) 推荐(0) 编辑

结构体 typedef关键字

摘要: 1 结构体#include #include using namespace std;void printBook( struct Book book );struct Book{ char title[50]; char author[50]; char subject[100]... 阅读全文

posted @ 2015-03-21 21:43 雨渐渐 阅读(174) 评论(0) 推荐(0) 编辑

c++ 文件读写

摘要: 1 文件写#includeusing namespace std;int main(){ ofstream out("w.txt"); if(out.is_open()) { out #includeusing namespace std;int main(){ char buff[256];... 阅读全文

posted @ 2015-03-21 21:15 雨渐渐 阅读(181) 评论(0) 推荐(0) 编辑

导航