หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
templates cannot source or receive events
Remarks
A templated class or struct cannot contain events.
Example
The following example generates C3740:
// C3740.cpp
template <typename T> // Delete the template specification
struct E {
__event void f(); // C3740
};
int main() {
}