我对 c++ 类很陌生,所以这可能是一个非常明显的问题,但是因为我不熟悉术语,但我似乎无法获得正确的搜索词。
无论如何,我想要做的是让一个类中的公共函数访问同一个类中的一个私有函数。
例如
//.h file:
class foo {
float useful(float, float);
public:
int bar(float);
};
//.cpp file:
int foo::useful(float a, float b){
//does something and returns an int
}
int foo::bar(float a){
//how do I access the 'useful' function in foo?? eg something like
return useful(a, 0.8); //but this doesnt compile
}