C++(11):auto通过初始化类型推导变量类型

C++11赋予了auto新的含义,可以通过auto自动推导变量的类型:

#include 
using namespace std;

int main(){
	auto i = 1;
	cout<<"type of i is:"<

auto可以简化复杂类型的变量定义:

#include 
#include 
using namespace std;

int main(){
	vector a = {1, 2, 3, 4};
	for(auto i = a.begin(); i < a.end(); i&

你可能感兴趣的:(C/C++,c++)