C# 中的默认方法参数

发布于 2024-09-14 11:31:35 字数 21 浏览 10 评论 0原文

如何使方法具有参数的默认值?

How can I make a method have default values for parameters?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

┼── 2024-09-21 11:31:35

您只能在 C# 4 中执行此操作,C# 4 引入了命名参数和可选参数< /a>:

public void Foo(int x = 10)
{
    Console.WriteLine(x);
}

...
Foo(); // Prints 10

请注意,默认值必须是常量 - 可以是普通的编译时常量(例如文字),也可以:

  • 值类型 default(T) 的无参数构造函数
  • 某些类型的 T

另请注意,默认值嵌入在调用者的程序集中(假设您省略相关参数) - 因此,如果您更改默认值而不重建调用代码,您仍会看到旧值。

C# 深入研究第二版中介绍了这一点(以及 C# 4 中的其他新功能)。 (本例为第 13 章。)

You can only do this in C# 4, which introduced both named arguments and optional parameters:

public void Foo(int x = 10)
{
    Console.WriteLine(x);
}

...
Foo(); // Prints 10

Note that the default value has to be a constant - either a normal compile-time constant (e.g. a literal) or:

  • The parameterless constructor of a value type
  • default(T) for some type T

Also note that the default value is embedded in the caller's assembly (assuming you omit the relevant argument) - so if you change the default value without rebuilding the calling code, you'll still see the old value.

This (and other new features in C# 4) are covered in the second edition of C# in Depth. (Chapter 13 in this case.)

永言不败 2024-09-21 11:31:35

C# 4.0 允许您使用命名参数和可选参数

public void ExampleMethod(
    int required, 
    string optionalstr = "default string",
    int optionalint = 10
)

在以前的版本中,您可以可以通过使用方法重载模拟默认参数

C# 4.0 allows you to use named and optional arguments:

public void ExampleMethod(
    int required, 
    string optionalstr = "default string",
    int optionalint = 10
)

In previous versions you could simulate default parameters by using method overloading.

海风掠过北极光 2024-09-21 11:31:35

您只需使用默认值声明它们 - 它们称为可选参数

 public void myMethod(string param1 = "default", int param2 = 3)
 {
 }

这是在 C# 4.0 中引入的(因此您需要使用 Visual Studio 2010)。

You simply declare them with the default values - they are called optional parameters:

 public void myMethod(string param1 = "default", int param2 = 3)
 {
 }

This was introduced in C# 4.0 (so you will need to use visual studio 2010).

怀里藏娇 2024-09-21 11:31:35

一个简单的解决方案是重载该方法:

private void Foo(int length)
{
}

private void Foo()
{
    Foo(20);
}

A simple solution is to overload the method:

private void Foo(int length)
{
}

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