普通函数和类成员函数const重载
函数参数的const重载只能重载引用型的,因为非引用的const和普通的非const参数一样。成员函数用const重载总共有三种方式,有三个地方可以写const,要注意const在不同的地方的意义。#include#include#includeusing namespace std;void fun(const int& i)//fun(10)这能用这个函数{ cout<<