gpt4 book ai didi

c# - 接口(interface)成员不能有定义

转载 作者:太空宇宙 更新时间:2023-11-03 18:02:04 24 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Cannot use interface default methods

(2 个回答)


3年前关闭。




为什么我无法添加此接口(interface)的默认实现?

我有 C# 8/.NET Core 3.0(如 Main 所示)

但由于某种原因,它大喊:

'ITest.Test()': interface members cannot have a definition


interface ITest
{
// Interface members cannot have a definition
void Test()
{
Console.WriteLine("Interface");
}
}

public class Test : ITest
{
void ITest.Test()
{
throw new NotImplementedException();
}
}
class Program
{
static void Main(string[] args)
{
// this works properly
var arr = "test".ToCharArray();

Console.WriteLine(arr[1..2]);
Console.WriteLine(arr[..2]);
Console.WriteLine(arr[..^1]);
Console.WriteLine(arr[^1..]);
}
}

最佳答案

默认的接口(interface)方法特性是 not available yet, even in the C# 8.0 preview (由 Microsoft 代表在回应“Rand.Random”评论者询问此功能不在预览版中时确认)。

如果你想提供一个实现,我会推荐使用继承和虚拟方法。

public class TestBase
{
public virtual void TestMethod()
{
Console.WriteLine("TestBase");
}
}

public class Test : TestBase
{
public override void TestMethod()
{
throw new NotImplementedException();
}
}

public class Program
{
public static void Main(string[] args)
{
var testBase = new TestBase();
testBase.TestMethod(); // Prints "TestBase"

var test = new Test();
test.TestMethod(); // Throws NotImplementedException
}
}

关于c# - 接口(interface)成员不能有定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53746303/

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