c# tcbs之建構函式呼叫建構函式示例

wisdomone1發表於2012-04-13
public class testref
    {
        public int x;
        public int y;
        public int z;
        public testref()
        {
            x = 3;
            y = 4;
        }
        public testref(int c):this()
        {
            z = c;
        }
    }

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9240380/viewspace-721090/,如需轉載,請註明出處,否則將追究法律責任。

相關文章