本人在C++项目中经常需要用到get和set方法,但是c++并不像 java的eclipse有自动生成 get 和 set 方法。如果手写是可以,但是当属性特别多的时候会非常麻烦。。。于是决定使用宏定义方法来解决。
本人在参考了网上资料(参见文章末尾的参考文献)之后,实现了自己的版本,cplusplusgetset.h头文件如下:
使用说明:
class MyClass { public: MyClass() { m_bLookAhead = true; m_dStatus = NULL; m_iHello = 0; } ~MyClass() {} PropertyBuilder_ReadWrite(bool, b, LookAhead, protected)//bool m_bLookAhead; PropertyBuilder_ReadWrite(double*, d, Status, protected)//bool* m_pStatus; PropertyBuilder_WriteOnly(int, i, Hello, private)//int m_iHello; public: void test() { setLookAhead(true); double a = 0; setStatus(&a); setHello(5); bool r = getLookAhead(); } };
---
参考文献
https://blog.csdn.net/Scythe666/article/details/48846761
https://www.codeproject.com/Articles/118921/C-Properties%20Introduction