【cmu15445c++入门】(7)C++ auto 关键字

2024-02-06 22:28

本文主要是介绍【cmu15445c++入门】(7)C++ auto 关键字,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

一、auto关键字介绍

C++ auto 关键字是一个关键字,它告诉编译器通过其初始化表达式推断声明变量的类型。它可以提高开发人员的效率(开发人员不再需要输入冗长、不守规矩的类型名称)。它在 for-each 循环的上下文中也很有用。但是,使用 auto 会带来风险,因为开发人员可能不知道他们正在使用的类型,因此存在错误和非功能性代码的风险。所以要小心!

二、代码

// Includes std::cout (printing) for demo purposes.
#include <iostream>
// Includes the std::set library.
#include <set>
// Includes the C++ string library.
#include <string>
// Includes the std::vector library.
#include <vector>
// Includes the std::unordered map library.
#include <unordered_map>// The C++ auto keyword is a keyword that tells the compiler to infer the type
// of a declared variable via its initialization expression. It can be
// incredibly useful, as it allows for developer efficiency (where the developer
// no longer has to type out long, unruly type names). It is also useful in the
// context of for-each loops. However, using auto poses a risk where the
// developer may not be aware of the types they are using, and therefore at risk
// for buggy and non functional code. So be careful!// C++ auto 关键字是一个关键字,它告诉编译器通过其初始化表达式推断声明变量的类型。
// 它可以提高开发人员的效率(开发人员不再需要输入冗长、不守规矩的类型名称)。
// 它在 for-each 循环的上下文中也很有用。
// 但是,使用 auto 会带来风险,因为开发人员可能不知道他们正在使用的类型.
// 因此存在错误和非功能性代码的风险。所以要小心!// Basic templated class with very long name, to show the usefulness of auto.
template <typename T, typename U> class Abcdefghijklmnopqrstuvwxyz {
public:Abcdefghijklmnopqrstuvwxyz(T instance1, U instance2): instance1_(instance1), instance2_(instance2) {}void print() const {std::cout << "(" << instance1_ << "," << instance2_ << ")\n";}private:T instance1_;U instance2_;
};// Templated function that returns an object of this class with a very long
// name.
template <typename T>
Abcdefghijklmnopqrstuvwxyz<T, T> construct_obj(T instance) {return Abcdefghijklmnopqrstuvwxyz<T, T>(instance, instance);
}int main() {// The auto keyword is used to initialize the variable a. Here, the type// is inferred to be type int.auto a = 1;// Here are more examples of using auto to declare basic variables.// Depending on the IDE being used, it might say what types a, b, and c// are.auto b = 3.2;auto c = std::string("Hello");// auto is not particularly useful for these prior examples. As one can// see, typing int a = 1;, float b = 3.2;, and std::string c = "Hello";// does not take significant overhead. However, there will definitely// be cases where the type name is long and complicated, or when the// type name is heavily templated, and using auto may be helpful.Abcdefghijklmnopqrstuvwxyz<int, int> obj = construct_obj<int>(2);auto obj1 = construct_obj<int>(2);// Maybe for one line it does not seem all that convenient, but imagine// if using a class with a very long name was useful in the code for// an extended period of time. Then, I'd imagine it would save a lot of// typing time!// 也许对于一行来说,它似乎并不那么方便,但想象一下,如果使用一个名称很长的类在代码中很长一段时间内都很有用。然后,我想它会节省很多打字时间!// One important thing to note about the auto keyword is that it // defaults to copying objects, which can lower performance. Take the// following example where we construct a int vector, and want to// define a variable that is a reference to it.// 关于 auto 关键字需要注意的一件重要事情是,它默认用于复制对象,这可能会降低性能。// 以下面的例子为例,我们构造了一个 int 向量,并想要定义一个变量来引用它。std::vector<int> int_values = {1, 2, 3, 4};// The following code deep-copies int_values into copy_int_values,// since auto infers the type as std::vector<int>, not std::vector<int>&.// 下面的例子是个拷贝auto copy_int_values = int_values;// However, the following code defines ref_int_values, which is a reference// to int_values, and therefore does not deep copy the int_values vector.// 下面的例子是个引用auto& ref_int_values = int_values;// The auto keyword is also useful for iterating through C++ containers.// For instance, let's construct an unordered map with std::string keys// and int values, and discuss methods of iterating through it.std::unordered_map<std::string, int> map;map.insert({{"andy", 445}, {"jignesh", 645}});// One method mentioned in unordered_map.cpp was to iterate through// a map by using a for loop with an iterator. Compare the readability// of the two loops below.// 关于 auto 关键字需要注意的一件重要事情是,对于对象采用的是复制,这可能会降低性能。// 以下面的例子为例,我们构造了一个 int 向量,并想要定义一个变量来引用它。std::cout << "Printing elements in map...\n";for (std::unordered_map<std::string, int>::iterator it = map.begin();it != map.end(); ++it) {std::cout << "(" << it->first << "," << it->second << ")"<< " ";}std::cout << std::endl;std::cout << "Printing elements in map with auto...\n";for (auto it = map.begin(); it != map.end(); ++it) {std::cout << "(" << it->first << "," << it->second << ")"<< " ";}std::cout << std::endl;// It is also possible to use the auto keyword to iterate over vectors// and sets.std::vector<int> vec = {1, 2, 3, 4};std::cout << "Printing elements in vector with auto...\n";for (const auto& elem : vec) {std::cout << elem << " ";}std::cout << std::endl;std::set<int> set;for (int i = 1; i <= 10; ++i) {set.insert(i);}std::cout << "Printing elements in set with auto...\n";for (const auto &elem : set) {std::cout << elem << " ";}std::cout << std::endl;// Overall, auto is a useful C++ keyword that can be used to write code more// efficiently, and to write cleaner and more readable code.// Keep in mind that using auto to iterate through C++ containers is better// in practice, since it produces more readable code. However, if you're not// sure of the types that are being used, it is always okay to revert back// to figuring out the type yourself.// 总的来说,auto 是一个有用的 C++ 关键字,可用于更高效地编写代码,并编写更干净、更易读的代码。// 请记住,在实践中使用 auto 遍历 C++ 容器会更好,因为它会生成更具可读性的代码。// 但是,如果不确定正在使用的类型,则始终可以恢复到自己确定类型。return 0;
}

运行结果

这篇关于【cmu15445c++入门】(7)C++ auto 关键字的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/685737

相关文章

Spring Security 从入门到进阶系列教程

Spring Security 入门系列 《保护 Web 应用的安全》 《Spring-Security-入门(一):登录与退出》 《Spring-Security-入门(二):基于数据库验证》 《Spring-Security-入门(三):密码加密》 《Spring-Security-入门(四):自定义-Filter》 《Spring-Security-入门(五):在 Sprin

【C++ Primer Plus习题】13.4

大家好,这里是国中之林! ❥前些天发现了一个巨牛的人工智能学习网站,通俗易懂,风趣幽默,忍不住分享一下给大家。点击跳转到网站。有兴趣的可以点点进去看看← 问题: 解答: main.cpp #include <iostream>#include "port.h"int main() {Port p1;Port p2("Abc", "Bcc", 30);std::cout <<

C++包装器

包装器 在 C++ 中,“包装器”通常指的是一种设计模式或编程技巧,用于封装其他代码或对象,使其更易于使用、管理或扩展。包装器的概念在编程中非常普遍,可以用于函数、类、库等多个方面。下面是几个常见的 “包装器” 类型: 1. 函数包装器 函数包装器用于封装一个或多个函数,使其接口更统一或更便于调用。例如,std::function 是一个通用的函数包装器,它可以存储任意可调用对象(函数、函数

C++11第三弹:lambda表达式 | 新的类功能 | 模板的可变参数

🌈个人主页: 南桥几晴秋 🌈C++专栏: 南桥谈C++ 🌈C语言专栏: C语言学习系列 🌈Linux学习专栏: 南桥谈Linux 🌈数据结构学习专栏: 数据结构杂谈 🌈数据库学习专栏: 南桥谈MySQL 🌈Qt学习专栏: 南桥谈Qt 🌈菜鸡代码练习: 练习随想记录 🌈git学习: 南桥谈Git 🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈�

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

06 C++Lambda表达式

lambda表达式的定义 没有显式模版形参的lambda表达式 [捕获] 前属性 (形参列表) 说明符 异常 后属性 尾随类型 约束 {函数体} 有显式模版形参的lambda表达式 [捕获] <模版形参> 模版约束 前属性 (形参列表) 说明符 异常 后属性 尾随类型 约束 {函数体} 含义 捕获:包含零个或者多个捕获符的逗号分隔列表 模板形参:用于泛型lambda提供个模板形参的名

数论入门整理(updating)

一、gcd lcm 基础中的基础,一般用来处理计算第一步什么的,分数化简之类。 LL gcd(LL a, LL b) { return b ? gcd(b, a % b) : a; } <pre name="code" class="cpp">LL lcm(LL a, LL b){LL c = gcd(a, b);return a / c * b;} 例题:

6.1.数据结构-c/c++堆详解下篇(堆排序,TopK问题)

上篇:6.1.数据结构-c/c++模拟实现堆上篇(向下,上调整算法,建堆,增删数据)-CSDN博客 本章重点 1.使用堆来完成堆排序 2.使用堆解决TopK问题 目录 一.堆排序 1.1 思路 1.2 代码 1.3 简单测试 二.TopK问题 2.1 思路(求最小): 2.2 C语言代码(手写堆) 2.3 C++代码(使用优先级队列 priority_queue)

Java 创建图形用户界面(GUI)入门指南(Swing库 JFrame 类)概述

概述 基本概念 Java Swing 的架构 Java Swing 是一个为 Java 设计的 GUI 工具包,是 JAVA 基础类的一部分,基于 Java AWT 构建,提供了一系列轻量级、可定制的图形用户界面(GUI)组件。 与 AWT 相比,Swing 提供了许多比 AWT 更好的屏幕显示元素,更加灵活和可定制,具有更好的跨平台性能。 组件和容器 Java Swing 提供了许多

【IPV6从入门到起飞】5-1 IPV6+Home Assistant(搭建基本环境)

【IPV6从入门到起飞】5-1 IPV6+Home Assistant #搭建基本环境 1 背景2 docker下载 hass3 创建容器4 浏览器访问 hass5 手机APP远程访问hass6 更多玩法 1 背景 既然电脑可以IPV6入站,手机流量可以访问IPV6网络的服务,为什么不在电脑搭建Home Assistant(hass),来控制你的设备呢?@智能家居 @万物互联