หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
l-value specifies const object
Remarks
Code attempts to modify an item declared const.
Example
The following example generates C2166:
// C2166.cpp
int main()
{
((const int&)1) = 5; // C2166
}