我有一个名为的variable
类
string name;
double value;
我在主窗口中有另一个名为(顺便说一下它mainwindow
是 qt 应用程序)
vector<variable> vect
的类push_back
class add_variable
{
private:
variable var;
MainWindow &vectholder;
public:
void push_back(var.getname(),var.getvalue());
};
错误
error: 'var' is not a type
error: expected ',' or '...' before '.' token
我也想达到这些被推入向量的变量我想在另一个类中调用它们