
c++
文章平均质量分 50
ikscher
这个作者很懒,什么都没留下…
展开
-
c++的studylog
今天在看c++的视频学习的时候,有个问题很不解 代码如下: #include using namespace std; class A{ public: A(int i){ cout<<"执行构造函数!\n";x=i;} A(A&a){ cout<<"执行复制构造函数!\n";} ~A(){cout<<"析构函数!";}原创 2013-06-01 10:55:44 · 717 阅读 · 0 评论 -
c++数组指针和指针数组
如下: int *matrix[10]; // array of 10 pointers int (*matrix)[10]; // pointer to an array of 10 ints int arr[]={1,2,3}; int (*p)[3]=&arr; //指向含有3个INT类型数组的指针数组,每一个指针指向整型数组中的一个整型元素。原创 2013-10-08 13:20:51 · 659 阅读 · 0 评论 -
c++学习笔记
C陷阱与缺陷 Effective C++ 设计模式(Design Patterns) 深度探索C++对象模型 深入理解计算机系统 编译原理 程序员修炼之通 代码大全(Code Complete) 算法导论(Introduction to Algorithms) 重构——改善既有代码设计(Refactoring) 编程之美 C原创 2012-06-10 13:31:41 · 611 阅读 · 0 评论