C# 中显示实现接口
接口的实现分为显示实现和隐式实现
用显示实现接口的目的就是为了,当一个类中实现多个具有相同方法的接口时,能够区分开来
在调用的时候,必须用接口调用。
class Program { static void Main(string[] args) { Test test = new Test(); test.OutPut(); Test1 t1 = new Test(); t1.OutPut(); Test2 t2 = new Test(); t2.OutPut(); Console.ReadKey(); } } public interface Test1 { void OutPut(); } public interface Test2 { void OutPut(); } public class Test:Test1,Test2 { public void OutPut() { Console.Write("123"); } void Test1.OutPut() { Console.Write("Test1"); } void Test2.OutPut() { Console.Write("Test2"); } }