logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

c++11新特性--auto

auto 关键字自动帮助推导类型auto i = 5// i will be of type intint n=3;double pi=3.14;auto j=pi*n;// j will be of type double类型更难写的例子// take a hypothetical Map of ( int and an map(int,in

#c++
c++11新特性--auto

auto 关键字自动帮助推导类型auto i = 5// i will be of type intint n=3;double pi=3.14;auto j=pi*n;// j will be of type double类型更难写的例子// take a hypothetical Map of ( int and an map(int,in

#c++
到底了