程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> C++屬性具體概念詳解

C++屬性具體概念詳解

編輯:C++入門知識

C++編程語言中的屬性是一個比較基礎的知識概念,我們初學者們在學習的過程中需要對這一基礎知識有一個深刻的認識,以方便將來的應用。在這裡就一起來了解一下C++屬性的相關概念。

“__declspec”是Microsoft c++中專用的關鍵字,它配合著一些屬性可以對標准C++進行擴充。這些C++屬性有:

align、allocate、deprecated、dllexport、dllimport、 naked、noinline、noreturn、nothrow、novtable、selectany、thread、property和uuid。

  1. template < class T1, class T2> class KeyValuePair  
  2. {  
  3. private:  
  4. //-- 參數  
  5. T1 *Key;  
  6. //------值  
  7. T2 *Value;  
  8. public  
  9. :  
  10. KeyValuePair()  
  11. {  
  12. Key=new T1;  
  13. Value=new T2;  
  14. }  
  15. ~KeyValuePair()  
  16. {  
  17. delete Key;  
  18. delete Value;  
  19. }  
  20. public :  
  21. T1 GetKey()  
  22. {  
  23. return this->Key;  
  24. }  
  25. T1 SetKey(T1 inputKey)  
  26. {  
  27. this->Key=inputKey;  
  28. }  
  29. private :  
  30. int m_old;  
  31. public:  
  32. //---------屬性----get--------set--------返回數據---C++屬性名稱  
  33. _declspec(property(get=GetOld,put=SetOld))int Old;   
  34. int GetOld(void)  
  35. {  
  36. return m_old;  
  37. }  
  38. void SetOld(int value)  
  39. {  
  40. m_old=value;  
  41. }  
  42. };  
  43. int main(int argc, char* argv[])  
  44. {  
  45. KeyValuePair< int,int> c1;  
  46. c1.Old=123;  
  47. cout< < c1.Old;  

C++屬性相關概念就為大家介紹到這裡。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved