gpt4 book ai didi

c# - 可选的非系统类型参数

转载 作者:太空狗 更新时间:2023-10-29 20:55:46 24 4
gpt4 key购买 nike

C#4.0 带来了可选参数,我已经等了好久了。然而,似乎因为只有系统类型可以是 const,所以我不能使用我创建的任何类/结构作为可选参数。

有什么方法可以让我使用更复杂的类型作为可选参数。或者这是一个人必须忍受的现实之一?

最佳答案

我能想到的最好的引用类型是:

using System;

public class Gizmo
{
public int Foo { set; get; }
public double Bar { set; get; }

public Gizmo(int f, double b)
{
Foo = f;
Bar = b;
}
}

class Demo
{
static void ShowGizmo(Gizmo g = null)
{
Gizmo gg = g ?? new Gizmo(12, 34.56);
Console.WriteLine("Gizmo: Foo = {0}; Bar = {1}", gg.Foo, gg.Bar);
}

public static void Main()
{
ShowGizmo();
ShowGizmo(new Gizmo(7, 8.90));
}
}

您可以通过使参数可为空来对结构使用相同的想法:

public struct Whatsit
{
public int Foo { set; get; }
public double Bar { set; get; }

public Whatsit(int f, double b) : this()
{
Foo = f; Bar = b;
}
}

static void ShowWhatsit(Whatsit? s = null)
{
Whatsit ss = s ?? new Whatsit(1, 2.3);
Console.WriteLine("Whatsit: Foo = {0}; Bar = {1}",
ss.Foo, ss.Bar);
}

关于c# - 可选的非系统类型参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2679564/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com