定义于类声明中的成员函数都将自动成为内联函数,类声明中常将短小的函数作为内联函数,也就是说在下面代码中set_tot()函数为内联函数。
class A {private:int a;int b ;public :int set_tot() {return a*b;} }
这段代码同理于下段代码:
class A {private:int a;int b ;public :int set_tot(); } inline int set_tot() {return return a*b; }