class SomeClass { // ... }; void some_function(const SomeClass& arg = SomeClass());
函数some_function通过引用访问其参数并具有默认值.这样做是否安全,或者在没有参数的情况下调用函数时引用是否无效?