-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoop.cpp
55 lines (45 loc) · 776 Bytes
/
oop.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
#include <iostream>
using namespace std;
class SampleClass {
private:
int x;
public:
SampleClass() {
cout<< "constructor";
}
SampleClass(int a) {
x = a;
}
// SampleClass(int a): x(a)
// {}
~SampleClass() {
cout<< "destructor";
}
int f() {
x=2;
cout<<x;
}
void f2();
protected:
};
void SampleClass::f2(){
cout<< "f2";
}
int insideFuncClass()
{
class X
{
private:
int m;
public:
X (int a) {m=a;}
int getm() {return m;}
} obx (2);
return ( obx.getm() + 4); // 6
}
int main()
{
SampleClass sc;
sc.f();
return 0;
}