博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C++11 自动推导auto
阅读量:6640 次
发布时间:2019-06-25

本文共 2785 字,大约阅读时间需要 9 分钟。

C++11 自动推导auto

 

C++11中引入的auto主要有两种用途:自动类型推导和返回值占位。

auto在C++98中的标识临时变量的语义,由于使用极少且多余,在C++11中已被删除。前后两个标准的auto,完全是两个概念。 

 

自动类型推导  

auto的自动类型推导,用于从初始化表达式中推断出变量的数据类型。通过auto的自动类型推导,可以大大简化我们的编程工作。

auto实际上实在编译时对变量进行了类型推导,所以不会对程序的运行效率造成不良影响。另外,auto并不会影响编译速度,因为编译时本来也要右侧推导然后判断与左侧是否匹配。

#define _CRT_SECURE_NO_WARNINGS#include 
#include
#include
#include
// 3. 使用模板技术时,如果某个变量的类型依赖于模板参数,不使用auto将很难确定变量的类型template
void Multiply(T t, U u){ auto v = t * u; // 使用auto后,将由编译器自动进行确定}class student{public: static int var1; //auto var2; 错误,非静态成员变量 //static auto var3; 错误,需要初始值};int student::var1 = 10;//void fun(auto x = 1) {} 错误,auto函数参数,有些编译器无法通过编译void mytest(){ //auto a; 错误,没有初始化表达式,无法推断出a的类型 //auto int a1 = 0; 错误,auto临时变量的语义在C++11中已不存在, 这是旧标准的用法。 // 1. 自动帮助推导类型 auto a = 10; // a ---> int auto c = 'A'; // c ---> char auto s("hello"); // s --> const char * // 2. 类型冗长 std::map
> map_; std::map
>::const_iterator itr1 = map_.begin(); const auto itr2 = map_.begin(); auto ptr = []() // ptr ---> void ptr() { std::cout << "mytest ..." << std::endl; }; // lambda 表达式 char x[3]; auto y = x; // y ---> char * // auto会退化成指向数组的指针,除非被声明为引用 // auto z[3] = x; 错误,auto数组,无法通过编译 return;}int main(){ mytest(); system("pause"); return 0;}

 

 

2.使用注意事项

1、我们可以使用valatile,pointer(*),reference(&),rvalue reference(&&) 来修饰auto

auto k = 5;
auto* pK = new auto(k);
auto** ppK = new auto(&k);
const auto n = 6;

2、用auto声明的变量必须初始化

auto m; // m should be intialized

3、auto不能与其他类型组合连用

auto int p; // 这是旧auto的做法。

4、函数和模板参数不能被声明为auto

void MyFunction(auto parameter){} // no auto as method argument
template<auto T> // utter nonsense - not allowed
void Fun(T t){}

5、定义在堆上的变量,使用了auto的表达式必须被初始化

int* p = new auto(0); //fine
int* pp = new auto(); // should be initialized
auto x = new auto(); // no intializer
auto* y = new auto(9); // Fine. Here y is a int*
auto z = new auto(9); //Fine. Here z is a int* (It is not just an int)

6、以为auto是一个占位符,并不是一个他自己的类型,因此不能用于类型转换或其他一些操作,如sizeof和typeid

int value = 123;
auto x2 = (auto)value; // no casting using auto
auto x3 = static_cast<auto>(value); // same as above

7、定义在一个auto序列的变量必须始终推导成同一类型

auto x1 = 5, x2 = 5.0, x3='r'; // This is too much....we cannot combine like this

8、auto不能自动推导成CV-qualifiers(constant & volatile qualifiers),除非被声明为引用类型

const int i = 99;
auto j = i; // j is int, rather than const int
j = 100 // Fine. As j is not constant
// Now let us try to have reference
auto& k = i; // Now k is const int&
k = 100; // Error. k is constant
// Similarly with volatile qualifer

9、auto会退化成指向数组的指针,除非被声明为引用

int a[9];
auto j = a;
cout<<typeid(j).name()<<endl; // This will print int*
auto& k = a;
cout<<typeid(k).name()<<endl; // This will print int [9]

 

转载地址:http://nravo.baihongyu.com/

你可能感兴趣的文章
mysqldump导出sql文件中insert多行问题
查看>>
html5调用手机本地摄像头和相册识别二维码详细实现过程
查看>>
怎么去掉zencart模板网址后面的zenid=数字这个东西
查看>>
window 命令行telnet 不能用问题
查看>>
关于C语言中%p和%X的思考
查看>>
ArcGIS 基础2-编辑数据
查看>>
Poedu_项目2_Lesson005 课后练习
查看>>
EL表达式 JSTL的标签库 EL的函数 自定义EL函数 自定义标签 JSP的开发模式 注册登陆案例...
查看>>
myeclipse 保存时自动格式化代码
查看>>
vim实用配置(转)
查看>>
实现MAXIMO7.5工作流任务箱任务颜色提示功能
查看>>
SpringMVC 集成redis
查看>>
Solaris作业管理
查看>>
回顾2016,我的简单总结
查看>>
3372 选学霸
查看>>
ssh: connect to host localhost port 22: Connection refused 问题
查看>>
Adobe Photoshop CS或者CC卸载不了怎么办?
查看>>
怎样重置网络设置-出现打不开网站的时候可以用用
查看>>
【转】30岁之前打好基础,无惧职场“35岁现象”! | 人力资源心理学
查看>>
分布式搜索引擎Elasticsearch PHP类封装 使用原生api
查看>>