本文主要是介绍我的C++库,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
- c++基类hpp文件
- 包含
GET_SET
宏定义,用来生成get和set函数
#ifndef _MAJIAOOBJECT_H
#define _MAJIAOOBJECT_H
#include <string>
using namespace std;
#define MAJIAO_FIELD_DEFINE(type, field) type field
#define GET_SET(access_permission, type, name)\
access_permission:\
MAJIAO_FIELD_DEFINE(type, name);\
public:\
inline void set##name(type v){\
this->##name = v;\
}\
inline type get##name(){\
return this->##name;\
}\
class MajiaoObject {
public :
GET_SET(public, int, id)
MajiaoObject() { }
~MajiaoObject() { }
virtual string toString() { return ""; }
} ;
#endif // _MAJIAOOBJECT_H
这篇关于我的C++库的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!