C++ 如何支持屬性

                                                C++ 如何支持屬性

 

屬性,是面向對象程序設計中不可缺少的元素,廣義的屬性是用來描述一個對象所處於的狀態。而我們這篇文章所說的屬性是狹義的,指能用“=”操作符對類的一個數據進行getset操作,而且能控制getset的權限。

       

先看一下代碼:

 #include <IOSTREAM>

#include <map>

#include <string>

#include <CONIO.H>

using namespace std;

 

class propertytest

{

    int m_xvalue;

    int m_yvalues[100];

    map<string,string> m_zvalues;

public:

    __declspec(property(get=GetX, put=PutX)) int x;

    __declspec(property(get=GetY, put=PutY)) int y[];

    __declspec(property(get=GetZ, put=PutZ)) int z[];   //應該是string z[]

 

    int GetX()

    {

        return m_xvalue;

    };

    void PutX(int x)

    {

        m_xvalue = x;

    };

   

    int GetY(int n)

    {

        return m_yvalues[n];

    };

 

    void PutY(int n,int y)

    {

        m_yvalues[n] = y;

    };

 

    string GetZ(string key)

    {

        return m_zvalues[key];

    };

 

    void PutZ(string key,string z)

    {

        m_zvalues[key] = z;

    };

 

};

 

int main(int argc, char* argv[])

{

    propertytest test;

    test.x = 3;

    test.y[3] = 4;

    test.z["aaa"] = "aaa";

    std::cout << test.x <<std::endl;

    std::cout << test.y[3] <<std::endl;

    std::cout << test.z["aaa"] <<std::endl;

 

    getch();

    return 0;

}

 

 Reference:

http://blog.csdn.net/wqf2/archive/2004/08/20/79977.aspx

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章