码迷,mamicode.com
首页 > 其他好文 > 详细

框架设计(一)

时间:2015-08-12 00:56:51      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:

定义接口:

public interface ITest
    {
        double GetPrice();

    }

某个类实现接口:

public class Test1 : ITest
    {
        public double GetPrice()
        {
            return 0.32;
        }
    }

定义壳子实体类:

public class Test
    {
        private ITest Itest;

        public Test(ITest itest)
        {
            this.Itest = itest;
        }

        public double GetPrice()
        {
            return this.Itest.GetPrice();
        }
    }

调用:

class Program
    {
        static void Main(string[] args)
        {
            Test test = new Test(new Test1());
            var returnVal = test.GetPrice();
            Console.Write(returnVal);
            Console.Read();
        }
    }

 

框架设计(一)

标签:

原文地址:http://www.cnblogs.com/webczw/p/4722566.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!