所以我正在使用 C++ 并尝试使用类。我正在尝试创建一个具有类类型的函数。这是代码:
struct action{
void setup(std::string){
/*...*/
}
};
action move(){
setup("*");//<-error:[use of undeclared identifier 'setup']
}
类的实例函数可以访问其成员函数和对象吗?另外,它应该返回什么?我是否必须创建一个单独的动作实例才能返回?可以与action move
吗?谢谢!