当我通过一本书“深C秘密”,得到以下报价.
解决方法 auto不是数据类型.它是一个存储类说明符,如静态.它基本上与静态相反,当在局部变量上使用时,表明变量的生命周期等于其范围(即,当它超出范围时,它被自动破坏).The auto keyword is apparently
useless. It is only meaningful to a
compiler-writer making an entry in a
symbol table—it says this storage is
automatically allocated on entering
the block (as opposed to global static
allocation,or dynamic allocation on
the heap). auto is irrelevant to
other programmers,since you get it by
default.
您不需要将auto指定为唯一允许使用它的地方,它也是默认值.
总结以上是内存溢出为你收集整理的c中的“auto”关键词概念全部内容,希望文章能够帮你解决c中的“auto”关键词概念所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)