C# 语言特性
Code
using?System;
using?System.Collections.Generic;
using?System.Text;
namespace?InterfaceShadow
{
????interface?ISomeInterface
????{
????????void?DoSomething();
????}
????class?Class1?:?ISomeInterface
????{
????????#region?ISomeInterface?成員
????????public?void?DoSomething()
????????{
????????????Console.WriteLine("Doing?something?in?Class?1.");
????????}
????????#endregion
????}
????class?Class2?:?Class1,?ISomeInterface
????{
????????#region?ISomeInterface?成員
????????void?ISomeInterface.DoSomething()
????????{
????????????Console.WriteLine("Explicitly?doing?something.");
????????}
????????public?new?void?DoSomething()
????????{
????????????Console.WriteLine("Doing?something?in?Class?2.");
????????}
????????#endregion
????}
????class?Program
????{
????????static?void?Main(string[]?args)
????????{
????????????Class2?c2?=?new?Class2();
????????????c2.DoSomething();
????????????((ISomeInterface)c2).DoSomething();
????????????((Class1)c2).DoSomething();
????????????Console.ReadLine();
????????}
????}
}
using?System;
using?System.Collections.Generic;
using?System.Text;
namespace?InterfaceShadow
{
????interface?ISomeInterface
????{
????????void?DoSomething();
????}
????class?Class1?:?ISomeInterface
????{
????????#region?ISomeInterface?成員
????????public?void?DoSomething()
????????{
????????????Console.WriteLine("Doing?something?in?Class?1.");
????????}
????????#endregion
????}
????class?Class2?:?Class1,?ISomeInterface
????{
????????#region?ISomeInterface?成員
????????void?ISomeInterface.DoSomething()
????????{
????????????Console.WriteLine("Explicitly?doing?something.");
????????}
????????public?new?void?DoSomething()
????????{
????????????Console.WriteLine("Doing?something?in?Class?2.");
????????}
????????#endregion
????}
????class?Program
????{
????????static?void?Main(string[]?args)
????????{
????????????Class2?c2?=?new?Class2();
????????????c2.DoSomething();
????????????((ISomeInterface)c2).DoSomething();
????????????((Class1)c2).DoSomething();
????????????Console.ReadLine();
????????}
????}
}
轉載于:https://www.cnblogs.com/lhking/archive/2009/04/06/1430430.html
總結
- 上一篇: Comet OJ 夏季欢乐赛 完全k叉树
- 下一篇: 单目RGB人脸识别