หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
'symbol': cannot be used before it is initialized
Remarks
The indicated symbol cannot be used before it is initialized. In practice, this means that a variable cannot be used to initialize itself.
To correct this error
- Do not initialize a variable with itself.
Example
The following example yields C3536 because each variable is initialized with itself.
// C3536.cpp
// Compile with /Zc:auto
int main()
{
auto a = a; //C3536
auto b = &b; //C3536
auto c = c + 1; //C3536
auto* d = &d; //C3536
auto& e = e; //C3536
return 0;
}