我有一堂课让我们说
class ABC
{
int x;
char y;
....
}
另一个班级
class xyz{
int UseVariablOfABC(int a,char b)
// a and b are the variables/members declared in class ABC above
}
int xyz::UseVariablOfABC(int a,char b){
//Do some thing with a and b
}
xyz 类是从用户抽象出来的(意味着他不能设置其成员函数的参数值,这里是 useVariableofABC ),用户只能使用 ABC 类 .... 在 c++ 中是否可行...我需要创建一个对象吗xyz中的ABC类......
任何建议请......