淘先锋技术网

首页 1 2 3 4 5 6 7

定义于类声明中的成员函数都将自动成为内联函数,类声明中常将短小的函数作为内联函数,也就是说在下面代码中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;
}