标签: c++ variables variable-names
我有一个类A类和一个字符串变量string name = "student"。我想创建一个类A的实例,其对象名称为学生所说的class A student; 但是我不知道对象的名称。我在字符串变量中存在对象名称。 有关如何执行此操作的任何建议?
string name = "student"
class A student;
答案 0 :(得分:1)
您根本无法做到这一点。一旦代码被编译,就没有变量名。