“参数缺少默认参数”编译器错误
void func ( string word = "hello", int b ) {
// some jobs
}
在另一个函数中
//calling
func ( "", 10 ) ;
,当我编译时,它会发出以下错误:
参数缺少默认参数
我想使用该函数,例如 func ( 10 )
或 func ( "hi" )
。
如何在不更改任何内容(例如设置 int b = 0
)的情况下修复它?
void func ( string word = "hello", int b ) {
// some jobs
}
in another function
//calling
func ( "", 10 ) ;
When I compile, it emits this error:
default argument missing for parameter
I want to use that function like func ( 10 )
or func ( "hi" )
.
How can I fix it without changing anything, such as setting int b = 0
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
在默认参数开始之后不能再有非默认参数。换句话说,如何为
b
指定一个值,而将word
保留为默认值“hello”?You can't have non-default parameters after your default parameters begin. Put another way, how would you specify a value for
b
leavingword
to the default of "hello" ?具有默认值的参数必须位于参数列表的末尾。
所以只需将函数声明更改为
The arguments with a default value have to come in the end of the argument list.
So just change your function declaration to
具有默认值的参数必须位于列表的末尾,因为在调用函数时,您可以将参数保留在末尾,但不能在中间遗漏它们。
由于您的参数具有不同的类型,因此您可以使用重载获得相同的效果:
Parameters with default values have to come at the end of the list because, when calling the function, you can leave arguments off the end, but can't miss them out in the middle.
Since your arguments have different types, you can get the same effect using an overload:
错误信息是正确的。如果将默认参数分配给给定参数,则所有后续参数都应具有默认参数。您可以通过两种方式修复它;
(1) 更改参数的顺序:
(2) 为
b
指定默认值:The error message is proper. If the default argument is assigned to a given parameter then all subsequent parameters should have a default argument. You can fix it in 2 ways;
(1) change the order of the argument:
(2) Assign a default value to
b
:你无法在不改变任何东西的情况下修复它!
要修复它,您可以使用重载:
You cannot fix it without changing anything!
To fix it, you can use overloading: