制作于2018.4.2
内联函数
将函数的内容由编译器直接替代主程序中的函数调用
int main()
{
int sum = 0;
sum = sum(20,30);
}
inline int sum(int b, intc)
return b + c;