หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
'name' : a namespace definition must appear either at file scope or immediately within another namespace definition
Remarks
You defined namespace name incorrectly. Namespaces must be defined at file scope (outside all blocks and classes) or immediately within another namespace.
Example
The following example generates C2870:
// C2870.cpp
// compile with: /c
int main() {
namespace A { int i; }; // C2870
}