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

静态属性 静态构造函数 构造函数 属性 子类 实现顺序

时间:2015-04-13 00:23:43      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:

 internal class Program
    {
        private static void Main(string[] args)
        {
            var ret = 2 &1;
         //  B.Print();
            new TestB();
            Console.Read();
        }
    }

    public class Log
    {
        public Log(string str)
        {
            Console.WriteLine(str);
        }
    }

    public class TestA
    {
        public static Log log = new Log("a1");
        public  Log log1 = new Log("a2");

        static TestA()
        {
            new Log("a3");
        }

        public TestA()
        {
            new Log("a4");
        }
    }

    public class TestB:TestA
    {
        public static Log log = new Log("b1");
        public Log log1 = new Log("b2");

        static TestB()
        {
            new Log("b3");
        }

        public TestB()
        {
            new Log("b4");
        }
    }

执行结果:

b1
b3
b2
a1
a3
a2
a4
b4

静态属性 静态构造函数 构造函数 属性 子类 实现顺序

标签:

原文地址:http://www.cnblogs.com/Zoes/p/4421047.html

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