本文介绍了有什么资格,并在C改性剂之间的区别?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想知道一个限定符和改性剂之间的差别。有些书建议挥发性
是一个修改器,其他的书把它当成一个限定词。
I would like to know the difference between a qualifier and a modifier. Some books suggest that volatile
is a modifier, other books regard it as a qualifier.
那么究竟是什么改性剂和预选赛中,相对于一个变量?
So what is exactly a modifier and a qualifier, in respect to a variable?
推荐答案
在C语言术语挥发性
是预选赛的
常量
,限制
,挥发性
和C11 _Atomic
是C类型修饰符。
const
, restrict
, volatile
and C11 _Atomic
are the C type qualifiers.
声明对象当C术语不使用这个词的修改的
C terminology does not use the word modifier when declaring an object.
这篇关于有什么资格,并在C改性剂之间的区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!