Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
“cv1 A”、“cv2 B”、“cv12 A”等符号是什么意思?我无法理解
cv我们常用的一种表示法来指出该类型可以标记为volatile或const。
cv
volatile
const
在 C++ 标准中,cv指的是所讨论类型的const和volatile限定符。cv A是“A以及它拥有的任何东西const和volatile限定词”的简写。添加一个数字 ( cv1, cv2) 只是一种机制,表示可能涉及不同的 cv 限定符集。
cv A
A
cv1
cv2