#include <iostream>
class A{
public:
void f();
private:
void g();
};
int main()
{
A a;
return 0;
}
只要你不使用声明的函数,完全没有任何问题。
如果使用了,链接会出错。