摘要:
如果一个类没有自己的构造函数,编译器会在需要的时候为其合成一个出来,俗称:合成默认构造函数。但是请注意是在需要的时候,并不是所有情况。 请看下面代码: 1 #include<iostream> 2 using namespace std; 3 class Foo { 4 public: 5 int 阅读全文
posted @ 2020-06-22 23:53
sunshine_gzw
阅读(202)
评论(0)
推荐(0)
摘要:
简单情况: #include<iostream> using namespace std; class A { public: virtual void foo() { cout << "virtual void foo()" << endl; } }; int main() { //通过对象调用, 阅读全文
posted @ 2020-06-22 21:26
sunshine_gzw
阅读(1307)
评论(0)
推荐(0)
摘要:
#include<iostream> using namespace std; class A { public: int data; void foo(int x) { data = x; cout << "data=" << data << endl; } }; void foo(A* ps, 阅读全文
posted @ 2020-06-22 19:18
sunshine_gzw
阅读(512)
评论(0)
推荐(0)

浙公网安备 33010602011771号