seq_list.h seq_list.c main.c Read More
posted @ 2017-10-15 23:41 zhou0905 Views(211) Comments(0) Diggs(0) Edit
优先级操作符描述例子结合性 1 ()[]->.::++-- 调节优先级的括号操作符数组下标访问操作符通过指向对象的指针访问成员的操作符通过对象本身访问成员的操作符作用域操作符后置自增操作符后置自减操作符 (a + b) / 4;array[4] = 2;ptr->age = 34;obj.age = 34;Class::age = 2;for( i = 0; i 0; i-- ) ..... Read More
posted @ 2017-10-15 23:15 zhou0905 Views(5543) Comments(0) Diggs(1) Edit
Shell Style Guide【Google Shell编程风格指南】 Revision 1.26 Each style point has a summary for which additional information is available by toggling the accom Read More
posted @ 2017-09-16 08:46 zhou0905 Views(748) Comments(0) Diggs(0) Edit
常用 Git 命令清单 作者: 阮一峰 日期: 2015年12月 9日 作者: 阮一峰 日期: 2015年12月 9日 我每天使用 Git ,但是很多命令记不住。 一般来说,日常使用只要记住下图6个命令,就可以了。但是熟练使用,恐怕要记住60~100个命令。 下面是我整理的常用 Git 命令清单。几 Read More
posted @ 2017-09-12 00:26 zhou0905 Views(104) Comments(0) Diggs(0) Edit
Google C++ Style Guide Table of Contents Header Files Self-contained Headers The #define Guard Forward Declarations Inline Functions Names and Order o Read More
posted @ 2017-09-09 21:04 zhou0905 Views(275) Comments(0) Diggs(0) Edit
只有注册用户登录后才能阅读该文。 Read More
posted @ 2017-09-09 20:41 zhou0905 Views(5) Comments(0) Diggs(0) Edit