“auto”之前是用来做什么的?

发布于 2024-12-18 02:24:52 字数 176 浏览 2 评论 0原文

我知道在 C++11 之前,auto 关键字具有完全不同的含义;它是一个存储类型说明符,指示具有自动存储类型的对象(即放置在堆栈上)。

理论就是这样的......您实际上会如何使用这个关键字(语法),为什么?另外,我在 C++11 之前的实际代码中没有看到这个关键字;什么时候有用(什么时间段)?

I know that before C++11 the auto keyword had a completely different meaning; it was a storage type specifier indicating an object that has automatic storage type (ie, placed on the stack).

That's how the theory goes... How would you actually use this keyword (syntax), and why? Also, I haven't seen this keyword in actual code pre-C++11; when was it useful (what time period)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

美胚控场 2024-12-25 02:24:52

它用于声明具有自动存储期限的局部变量(即“在堆栈上”)。

至少自 C90 以来,它一直是一个无用的关键字,因为自动存储持续时间是局部变量的默认存储持续时间。

It was used to declare a local variable with automatic storage duration (i.e., "on the stack").

At least since C90 it has been a useless keyword, since automatic storage duration is the default storage duration for a local variable.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文