《代码大全第二版》书中的小疑问
《代码大全第二版》书的P140:
class Employee{public: Employee(); FullName getName()const; String getAddress()const;private: String name; //书中说,此处的private的声明放在类的头文件中是不好的。 String address; String jobClass;}class Employee{public: Employee(); FullName getName()const; String getAddress()const;private: EmployeeImplementation * implementation;}