หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
incorrect user-defined conversion syntax : illegal indirections
Remarks
Indirection of a conversion operator is not allowed.
Example
The following example generates C2586:
// c2586.cpp
// compile with: /c
struct C {
* operator int(); // C2586
operator char(); // OK
};