gpt4 book ai didi

具有相同参数签名的 C# 构造函数

转载 作者:IT王子 更新时间:2023-10-29 04:18:02 25 4
gpt4 key购买 nike

我敢肯定这一定是一个常见问题。我有一个在理想世界中有以下构造函数的类

public Thing(string connectionString)

public Thing(string fileName)

显然这是不允许的,因为签名是相同的。有人知道这个问题的优雅解决方案吗?

最佳答案

您可以使用命名构造函数惯用语:

public class Thing
{
private string connectionString;

private string filename;

private Thing()
{
/* Make this private to clear things up */
}

public static Thing WithConnection(string connectionString)
{
var thing = new Thing();
thing.connectionString = connectionString;
return thing;
}

public static Thing WithFilename(string filename)
{
var thing = new Thing();
thing.filename = filename;
return thing;
}
}

关于具有相同参数签名的 C# 构造函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/488071/

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