【C++】学习笔记三十九——内联函数

内联函数

内联函数是C++为提高程序运行速度所做的改进。

在程序的不同地方调用内联函数时,会创建一个该函数的副本,不需在内存中来回跳变,节省了时间,但占用了内存。

使用内联函数:

  • 在函数声明前加上inline;
  • 在函数定义前加上inline。
    通常的做法是省略原型,将整个定义(即函数头和所有函数代码)放在本应提供原型的地方。

程序8.1

#include 

inline double square(double x) { return x*x; }

int main()
{
    using namespace std;
    double a, b;
    double c = 13.0;

    a = square(5.0);
    b = square(4.5 + 7.5);
    cout << "a = " << a << ", b = " << b << "\n";
    cout << "c = " << c;
    cout << ", c squared = " << square(c++) << "\n";
    cout << "Now c=" << c << "\n";
    system("pause");
    return 0;
}

这里写图片描述

输出表明,内联函数和常规函数一样,也是按值传递参数的。

你可能感兴趣的:(C++,C++,内联函数,inline)