方法中参数带赋值是啥意思?
程序代码:
static int Add(int num = 1)
{
return num;
}
程序代码:
static int Add(int num = 1)
{
return num;
}
2016-06-20 14:56
2016-06-20 21:57