C++类的声明和定义的时候,形参什么时候需要加什么时候不需要?

2024-11-22 22:07:36
推荐回答(1个)
回答1:

void fun(int ); //声明
void fun(int n){ //定义
n++;
}