gpt4 book ai didi

c++ - 如何在 C++ 中遍历类的公共(public)变量?

转载 作者:太空宇宙 更新时间:2023-11-04 13:36:49 25 4
gpt4 key购买 nike

<分区>

如何循环(foreach c++ 类的公共(public)变量),我有如下的 temp_class

  class temp_class
{
public:
std::string name;
int age;
class2 object_class;

private:
//some code here
}

现在我需要获取类中所有公共(public)变量的列表(如果我们想要获取 c# 类的所有属性的列表,则类似的事情,但对于 c++ 类)

temp_class object_class;
//here these is a code to set the values for each public variable in the object

foreach(public_variable in object_class)
{
string var_name=//get the public variable name
string var_value=//get the public variable value
}

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com