หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
'abstract declarator': __based modifier illegal on reference
Remarks
The __based modifier can be used on pointers only.
Example
The following example generates C2640:
// C2640.cpp
int* ptr;
int main()
{
int __based(ptr)& based_ref; // C2640
int __based(ptr)* based_ptr; // OK
}