“参数缺少默认参数”编译器错误

发布于 2024-11-02 15:12:42 字数 428 浏览 0 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

不疑不惑不回忆 2024-11-09 15:12:42

在默认参数开始之后不能再有非默认参数。换句话说,如何为 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 leaving word to the default of "hello" ?

惜醉颜 2024-11-09 15:12:42

具有默认值的参数必须位于参数列表的末尾。

所以只需将函数声明更改为

void func(int b, string word = "hello")

The arguments with a default value have to come in the end of the argument list.

So just change your function declaration to

void func(int b, string word = "hello")
情域 2024-11-09 15:12:42

具有默认值的参数必须位于列表的末尾,因为在调用函数时,您可以将参数保留在末尾,但不能在中间遗漏它们。

由于您的参数具有不同的类型,因此您可以使用重载获得相同的效果:

void func ( string word, int b ) {

  // some jobs

}

void func ( int b ) { func("hello", b); }

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:

void func ( string word, int b ) {

  // some jobs

}

void func ( int b ) { func("hello", b); }
粉红×色少女 2024-11-09 15:12:42

错误信息是正确的。如果将默认参数分配给给定参数,则所有后续参数都应具有默认参数。您可以通过两种方式修复它;

(1) 更改参数的顺序:

void func (int b, string word = "hello");

(2) 为 b 指定默认值:

void func (string word = "hello", int b = 0);

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:

void func (int b, string word = "hello");

(2) Assign a default value to b:

void func (string word = "hello", int b = 0);
说谎友 2024-11-09 15:12:42

你无法在不改变任何东西的情况下修复它!

要修复它,您可以使用重载:

void func ( string word, int b ) {
  // some jobs
}

void func ( string word ) {
    func( word, 999 );
}

void func ( int b ) {
    func( "hello", b );
}

You cannot fix it without changing anything!

To fix it, you can use overloading:

void func ( string word, int b ) {
  // some jobs
}

void func ( string word ) {
    func( word, 999 );
}

void func ( int b ) {
    func( "hello", b );
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文