2016-01-21 关于auto auto一般会忽略顶层const,如const int i = 0; auto j = i;则j的类型是int,可以显示的加上const,即`const auto j = i;