镇场诗:
大梦谁觉,水月中建博客。百千磨难,才知世事无常。
今持佛语,技术无量愿学。愿尽所学,铸一良心博客。
——————————————————————————————————————————
1、代码
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 { //为了便于观看,我就把接口和类都写在一个.cs文件中了 public interface ISay { void Say(); } class Student : ISay { public void Say() { Console.WriteLine("我是一个学生,我的任务是学习"); } } class Teacher : ISay { public void Say() { Console.WriteLine("我是一个老师,我的任务是教书育人"); } } class Program { static void Main(string[] args) { Introduce(new Student()); Introduce(new Teacher()); Console.ReadKey(); } public static void Introduce(ISay h) { h.Say(); } } }
2、效果
——————————————————————————————————————————
博文的精髓,在技术部分,更在镇场一诗。
C#是优秀的语言,值得努力学习。
如果博文的内容有可以改进的地方,甚至有错误的地方,请留下评论,我一定努力改正,争取铸成一个良心博客。
注:此文仅作为科研学习,如果我无意中侵犯了您的权益,请务必及时告知,我会做出改正。