2010年1月23日
摘要: 内存分配mallocfunction<cstdlib>void * malloc ( size_t size );Allocate memory blockAllocates a block ofsizebytes of memory, returning a pointer to the beginning of the block.The content of the newly ... 阅读全文
posted @ 2010-01-23 22:26 ︶ㄣ第二名 阅读(2100) 评论(0) 推荐(0) 编辑
摘要: 有一种常见的误解认为用struct保留字定义的类与用class定义的类有很大的区别。唯一的不同只是默认的成员保护级别和默认的派生保护级别,没有其他的区别。1. 用class定义的类,默认的成员访问级别为private。struct定义的类成员默认访问级别是public。2. 使用class关键字定义的派生类默认具有private继承,而用struct关键字定义的类默认具有public继承:  cl... 阅读全文
posted @ 2010-01-23 21:53 ︶ㄣ第二名 阅读(1142) 评论(0) 推荐(0) 编辑