C++ static const operator

static 修饰为静态函数只能调用静态函数和变量
const 修饰为常量函数只能调用常量函数和变量

常引用作为函数的参数 一般作用是为了保护原参数

void display(const double &d) {}; 此时d所引用的对象就不能被改变 只能使用

operator++ // 前置重载符
operator++(int a) //后置

你可能感兴趣的:(C++ static const operator)