首页 > 代码库 > 接口练习代码
接口练习代码
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { Console.WriteLine("================接口练习============================"); plane pl = new plane(); pl[0] = "战斗机"; Console.WriteLine(pl[0]); Console.WriteLine(pl.Name); pl.fly(8); pl.Speed = 200; Console.WriteLine(pl.Speed); Console.ReadKey(); } //接口 #region flyable接口 public interface flyable { void fly(int x); string this[int x] { get; set; } int Speed { get; set; } } #endregion #region Plane类 class plane :flyable { int speed; string name; public void fly (int x) { Console.WriteLine("飞行速度为:"+x); } public string this[int x ] { set { Name = value; } get { return Name+"的序号为:"+x; } } public int Speed { get { return speed; } set { speed = value; } } public string Name { get { return name; } set { name = value; } } } #endregion }
注意 :索引器前面要加 public,要不 检查代码认为没有实现该接口
接口练习代码
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。