这里是什么用法,叫做什么术语啊?
#include<iostream.h>class location {int x,y;
public:void init(int=0,int=0);
void value(int val){x=val;}
int value(){return x;}
};
void location::init(int a,int b){x=a;y=b;}
void main(){location A;
A.init();
A.value(6);
cout<<A.value()<<endl;
}
这个程序里出现了一个public:void init(int=0,int=0); (第三行)
这里的int=0,是属于什么用法啊,我怎么没有见过啊?谢谢回答!