หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
'symbol' : only an existing namespace can be given an alternative name by a namespace alias definition
You cannot create a namespace alias to a symbol other than a namespace.
The following sample generates C2879:
// C2879.cpp
int main() {
int i;
namespace A = i; // C2879 i is not a namespace
}