“auto”之前是用来做什么的?
我知道在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它用于声明具有自动存储期限的局部变量(即“在堆栈上”)。
至少自 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.