是否可以动态检查文本字符串是否是 C++ 中给定类的成员?
Posted
技术标签:
【中文标题】是否可以动态检查文本字符串是否是 C++ 中给定类的成员?【英文标题】:Is it possible to dynamically check if a string of text is a member inside of a given class in C++? 【发布时间】:2017-07-07 20:25:26 【问题描述】:我想知道是否有任何方法可以检查给定类是否包含给定成员,除了给定成员的名称作为 std::string 提供。这是我所处情况的一个例子:
class MyClass
public:
int a;
int b;
int c;
void Handle_Class(std::string prop)
if (this->prop) //pseudo code of what I want to accomplish
//do stuff
;
;
my_class;
int main()
my_class.Handle_Class("a");
;
我知道 Handle_Class 不是这样的函数的最佳名称,但它基本上应该检查该类是否有一个名为 prop 的成员。 我不知道如何实际做到这一点。本质上,我试图动态检查一个类是否具有给定的成员。 我在 Lua 方面有很多经验,你可以在 Lua 中轻松完成(虽然 Lua 不是面向对象的,但你可以使用表来完成)
local my_table = a = 123; b = 456; c = 789;
local function Handle_Table(prop)
if my_table[prop] then
print("property "..prop.." exists inside my_table!");
end
end
如果有任何帮助,我将不胜感激。 谢谢
【问题讨论】:
你在验证一些变量吗? 如果我不太理解你的方法,这可以用地图来完成,你可以设置几个值,例如像还有一种方法可以在编译时使用模板执行此操作,您不能在运行时指定动态字符串进行检查,但请考虑:
How to detect whether there is a specific member variable in class?
【讨论】:
以上是关于是否可以动态检查文本字符串是否是 C++ 中给定类的成员?的主要内容,如果未能解决你的问题,请参考以下文章
如何检查给定的 c++ 字符串或 char* 是不是仅包含数字?
使用 SET(C++) 检查两个给定字符串是不是为字谜时出现运行时错误