什么是C ++中的类型推断?
类型推断或推论是指以编程语言自动检测表达式的数据类型。它是某些强静态类型的语言中提供的功能。在C ++中,auto关键字(在C ++ 11中添加)用于自动类型推导。例如,您想创建一个迭代器来迭代向量,则可以简单地使用auto来实现此目的。
示例
#include<iostream>#include<vector>
using namespace std;
int main() {
vector<int> arr(10);
for(auto it = arr.begin(); it != arr.end(); it ++) {
cin >> *it;
}
return 0;
}
在上面的程序中,它将自动获得类型std::vector <int>::iterator。
以上是 什么是C ++中的类型推断? 的全部内容, 来源链接: utcz.com/z/355642.html