Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

how the this pointer works

Status
Not open for further replies.

desaipa

Member level 2
Joined
Jan 20, 2005
Messages
53
Helped
1
Reputation
2
Reaction score
0
Trophy points
1,286
Location
india
Activity points
487
hi all ,
how the THIS pointer works
PD
 

The 'this' pointer references the current object, the object that the method was called from.
 

Consult Cpp for more clear understanding of the same.

Added after 9 seconds:

Consult Cpp ebooks for more clear understanding of the same.

Added after 5 minutes:

Consult Cpp ebooks for more clear understanding of the same.
 

u said about e book which one can u send it me
PD
 

Think of a class as being a template for a structure (i.e., a struct typedef).

When you call a member function of a class, you are in fact passing to that function an "invisible" argument. That is to say that you won't see this argument as a formal argument in the function's declaration, nor will you include a value for the argument when you call the member function. This invisible argument is the "this" pointer, which points to a specific instance of the class'es structure.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top