上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 57 下一页

2015年3月30日

c++ 链接

摘要: header.h#ifndef HEADER_H#define HEADER_Hunsigned long getFac(unsigned short num);static const unsigned short headerNum = 5;#endif // HEADER_H_INCLUDED... 阅读全文

posted @ 2015-03-30 13:18 雨渐渐 阅读(190) 评论(0) 推荐(0) 编辑

2015年3月29日

c++ 异常处理 assert | try

摘要: #include #include using namespace std;int main(){ int i = 1; assert(i == 65); cout #includeusing namespace std;unsigned long getFact(unsigned... 阅读全文

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

2015年3月24日

c++ 容器类

摘要: #include #include #include #include using namespace std;void test_map();struct Person{ string name; int age;};int main(){ vector vs; //lis... 阅读全文

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

protobuf 向前兼容向后兼容

摘要: http://blog.163.com/jiang_tao_2010/blog/static/12112689020114305013458/ 不错的protobuf、、protobuf的编码方式:http://wangjunle23.blog.163.com/blog/static/1178... 阅读全文

posted @ 2015-03-24 14:33 雨渐渐 阅读(30045) 评论(0) 推荐(0) 编辑

2015年3月22日

命名空间和模块化编程,头文件

摘要: #include #include #include "dynamic_memory.h"Company::Company(std::string theName){ name = theName;};void Company::printInfo(){ std::cout printI... 阅读全文

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

对象3:继承

摘要: #include #include using namespace std;class Animal{public: string mouth; void eat(); void sleep(); void drool();};class Pig : public Anima... 阅读全文

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

动态内存 this指针

摘要: #include #include class Company{public: Company(std::string theName); virtual void printInfo();protected: std::string name;};class TechCompan... 阅读全文

posted @ 2015-03-22 11:17 雨渐渐 阅读(210) 评论(0) 推荐(0) 编辑

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) 编辑

上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 57 下一页

导航