C++中怎么使用auto避免多余的类型名重复


今天就跟大家聊聊有关C++中怎么使用a 香港云主机uto避免多余的类型名重复,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。Simple repetition is tedious and error-prone.简单的重复多余且易错。
When you useauto, the name of the declared entity is in a fixed position in the declaration, increasing readability.当你使用auto的时候,被定义实体的名称会出现在固定的位置,这样可以增加可读性。In a template function declaration the return type can be a member type.在模板函数定义中,返回值可以是成员类型。Consider:考虑以下代码:In each case, we save writing a longish, hard-to-remember type that the compiler already knows but a programmer could get wrong.无论哪种情况,我们都不必编写又长、类型又难记的类型信息。其实这些信息编译器已经知道,但程序员还是会弄错。
Example(示例)Avoidautofor initializer lists and in cases where you know exactly which type you want and where an initializer might require conversion.对于你确切地知道所需类型但初始化器可能需要转换的情况,应避免为初始化列表使用auto。Example(示例)When concepts become available, we can (and should) be more specific about the type we are deducing:在concepts可以之后,我们可以(也应该)更加明确我们推断的类型。
示例(C++17)
Flag redundant repetition of type names in a declaration.标记在声明时发生的多余的类型名称重复。
看完上述内容,你们对C++中怎么使用auto避免多余的类型名重复有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注开发云行业资讯频道,感谢大家的支持。

相关推荐: Redis跳跃表的结构实现方法

这篇文章主要讲解了“Redis跳跃表的结构实现方法”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Redis跳跃表的结构实现方法”吧!Redis 提供了5种数据类型:String(字符串)、Hash(哈希)、Li…

免责声明:本站发布的图片视频文字,以转载和分享为主,文章观点不代表本站立场,本站不承担相关法律责任;如果涉及侵权请联系邮箱:360163164@qq.com举报,并提供相关证据,经查实将立刻删除涉嫌侵权内容。

Like (0)
Donate 微信扫一扫 微信扫一扫
Previous 08/05 21:44
Next 08/05 21:44

相关推荐