gpt4 book ai didi

c# - 在c#中实现两个具有相同功能的接口(interface)

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

我们能否在c#中实现两个具有相同功能的接口(interface)

interface TestInterface
{
public function testMethod();
}

interface TestInterface2
{
public function testMethod();
}

class TestClass implements TestInterface, TestInterface2
{

}

这可能吗?

我发现在 php 中是不可能的 here

最佳答案

是的,这是可能的,您必须使用接口(interface)名称来限定方法名称:

    class TestClass : TestInterface, TestInterface2
{
void TestInterface.testMethod()
{

}

void TestInterface2.testMethod()
{
}
}

虽然我不建议采用这样的结构 - 它应该只是为了学术兴趣而做:-)

关于c# - 在c#中实现两个具有相同功能的接口(interface),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16976817/

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