1. 程式人生 > >C# 使用屬性實現位狀態結構體

C# 使用屬性實現位狀態結構體

在C下可以很方便的用位域共同體實現位狀態操作。借鑑不少網友的方法,測試一下使用屬性實現此功能。

           //方法函式

        privatestatic bytegetdatx(object _v,byte_t,int _x)

        {

            intdatt = Convert.ToInt16(_t);

            if((int)_v == 1)

                datt |= 1 << _x;

            else

                datt &= ~(1 << _x);

            return(byte)datt;

        }

        struct TEMPDAT

        {

            publicbyte dat;

            publicint b0

            {

                get{ return ((dat & 0x01) == 0x01) ? 1 : 0; }

                set{dat= getdatx(value, dat,0);}

            }

            publicint b1

            {

                get{ return ((dat & 0x02) == 0x02) ? 1 : 0; }

                set {dat = getdatx(value, dat, 1); }

            }

            publicint b2

            {

                get{ return ((dat & 0x04) == 0x04) ? 1 : 0; }

                set{ dat = getdatx(value, dat, 2); }

            }

            public

int b3

            {

                get{ return ((dat & 0x08) == 0x08) ? 1 : 0; }

                set{ dat = getdatx(value, dat, 3); }

            }

            publicint b4

            {

                get{ return ((dat & 0x10) == 0x10) ? 1 : 0; }

                set {dat = getdatx(value, dat, 4); }

            }

            publicint b5

            {

                get{ return ((dat & 0x20) == 0x20) ? 1 : 0; }

                set{ dat = getdatx(value, dat, 5); }

            }

            publicint b6

            {

                get{ return ((dat & 0x40) == 0x40) ? 1 : 0; }

                set{ dat = getdatx(value, dat, 6); }

            }

            publicint b7

            {

                get{ return ((dat & 0x80) == 0x80) ? 1 : 0; }

                set{ dat = getdatx(value, dat, 7); }

            }

        }

        privateTEMPDAT tempDat;

程式碼寫的有些冗餘,期待共同學習,共同提高。