class HelloWorld{
setupUi(x){};
}
HelloWorld *ui;
ui=new HelloWorld;
ui->setup(x); \\对于非静态类成员函数,只有类对象可以调用其函数;这里也只有类对象的指针可以调用类函数;