Please enable JavaScript.
Coggle requires JavaScript to display documents.
APW (Pointer (c *p (p = &ob ((*p).v, p->v)), int c::*p (p = &c:…
APW
Pointer
c *p
p = &ob
(*p).v
p->v
int c::*p
p = &c::v
ob.*p
int (c::*p) ( )
p=&c::f
(ob.*p)( )
int *p
p = &ob.v
*p
Inheritance
Public
Protected
Private
Public,Protected
Private
Protected
Public,Protected
New & Delete
a = new int[SizeNumber]
delete [ ] a
v = new int(InitialValue)
delete v
Virtual Functions
Virtual
pure f( )=0
p = &obA
p->vA
p->vB
Static
c::v
Friend
ob1.v + ob2.v
*this
Cascading t.fun1().fun2()
C Operator Sign (const C &ob)
ob1[Sign]ob2
ob1.Sign(ob2)
Friend_Sign(ob1.ob2)
ob1.Sign( )
ob0.Friend_Sign(ob1.ob2)
Class
Object
Public, Private, Protect
Constractor, Distractor
Distractor , Send Normal (Copy & Destroy) & Refrence
Polymorphism