const成员函数、inline成员函数、static成员函数中关键字的位置
const成员函数在类中用const修饰成员函数名,在类外同样需要使用const修改其成员函数名。否则,编译器会把它看成一个不同的函数。当然,如果const成员函数直接在类中定义,类外的声明也就不需要了。class Player{public: Player(std::string name, int age) : m_strName(name), m_nAg