forked from thantrieu/C-Tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNameSpace.cpp
62 lines (48 loc) · 971 Bytes
/
NameSpace.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/*
Name space in c++:
- cú pháp tổng quát:
namespace name {
...
}
- cho phép nhiều namespace có cùng tên đối tượng mong muốn
- nhiều namespace có cùng tên vẫn được coi là hợp lệ
- namespace chỉ được khai báo ở phạm vi toàn cục
- namespace không chứa các access modifiers
- namespace có thể lồng nhau
- sau ngoặc đóng của namespace } không cần có ;
*/
#include <iostream>
#include "NameSpaceExample.h"
using namespace std;
using namespace example1;
namespace space1 {
namespace s1 {
int x;
int a;
void sayHello() {
cout << "Hello" << endl;
}
class X {
};
}
namespace s2 {
int x;
int a;
void sayHello() {
cout << "Hello" << endl;
}
class X {
};
}
}
namespace space2 {
const int X = 100;
void sayHello();
}
void space2::sayHello() {
cout << "Hi there!" << endl;
}
int main() {
NameSpaceExample* ex = new NameSpaceExample();
return 0;
}