所谓的缺省函数,就是已经定义了初始变量的函数。
以下代码对于类A中的方法set() 和 普通函数 func() 均有默认值!!
#includeusing namespace std;class A{public: A(){cout<<"执行构造函数创建一个对象\n";} ~A(){cout<<"执行构析构函数\n";} void set(int width= 10,int height =6);private: int w; int h;};void A::set(int width, int height){ w=width; h=height; cout<<"h="< < <<"w="< <