C++11 auto关键字的...feature?

因为int* unify auto*得到auto=int

■网友
我觉得effective mordern C++的解释是最好的:
你把auto看成模板的typename T
【C++11 auto关键字的...feature?】 第一个T会匹配成int *
第二个T会匹配成int

■网友
因为auto自动根据右值的类型转换自己所代表的类型.


    推荐阅读