Click here to Skip to main content
15,914,395 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Using Visual C++ .NET (ClassWizard) Pin
Andrew Walker19-Aug-04 15:19
Andrew Walker19-Aug-04 15:19 
GeneralRe: Using Visual C++ .NET (ClassWizard) Pin
Jon Hulatt19-Aug-04 20:49
Jon Hulatt19-Aug-04 20:49 
GeneralWindow messages Pin
RichardS19-Aug-04 3:00
RichardS19-Aug-04 3:00 
GeneralRe: Window messages Pin
Ivan Cachicatari19-Aug-04 4:38
Ivan Cachicatari19-Aug-04 4:38 
Questionwhat does "this" mean? Pin
Deepak Samuel19-Aug-04 2:33
Deepak Samuel19-Aug-04 2:33 
AnswerRe: what does "this" mean? Pin
David Crow19-Aug-04 2:46
David Crow19-Aug-04 2:46 
AnswerRe: what does "this" mean? Pin
Maximilien19-Aug-04 2:46
Maximilien19-Aug-04 2:46 
AnswerRe: what does "this" mean? Pin
V.19-Aug-04 3:34
professionalV.19-Aug-04 3:34 
"this" is introduced so the compiler could make the difference between members of the class and members of another object.
eg. if you would do this:
<br />
public void SetSomeInt(int input){<br />
 input = input;<br />
}<br />

then the compiler probably would complain. which one is the parameter and which one is the variable of the class?
if you do this:
<br />
public void SetSomeInt(int input){<br />
 this->input = input;<br />
}<br />

it will probably work.

It's just a pointer to the Object itself.

"If I don't see you in this world, I'll see you in the next one... and don't be late." ~ Jimi Hendrix
AnswerRe: what does &quot;this&quot; mean? Pin
V.19-Aug-04 3:34
professionalV.19-Aug-04 3:34 
GeneralRe: what does &quot;this&quot; mean? Pin
Antony M Kancidrowski19-Aug-04 4:20
Antony M Kancidrowski19-Aug-04 4:20 
GeneralRe: what does &quot;this&quot; mean? Pin
V.19-Aug-04 4:44
professionalV.19-Aug-04 4:44 
GeneralRe: what does &quot;this&quot; mean? Pin
Michael P Butler19-Aug-04 22:03
Michael P Butler19-Aug-04 22:03 
AnswerRe: what does &quot;this&quot; mean? Pin
toxcct19-Aug-04 4:34
toxcct19-Aug-04 4:34 
GeneralGetSysColour &amp; CreateBrush Pin
Member 101344319-Aug-04 1:12
Member 101344319-Aug-04 1:12 
GeneralProblem with CRecordset/CDatabase Pin
Joerg Warthemann19-Aug-04 0:54
Joerg Warthemann19-Aug-04 0:54 
GeneralRe: Problem with CRecordset/CDatabase Pin
John M. Drescher19-Aug-04 2:00
John M. Drescher19-Aug-04 2:00 
GeneralRe: Problem with CRecordset/CDatabase Pin
Joerg Warthemann19-Aug-04 6:56
Joerg Warthemann19-Aug-04 6:56 
GeneralRe: Problem with CRecordset/CDatabase Pin
John M. Drescher19-Aug-04 7:01
John M. Drescher19-Aug-04 7:01 
GeneralRe: Problem with CRecordset/CDatabase Pin
BlackDice19-Aug-04 10:16
BlackDice19-Aug-04 10:16 
GeneralRe: Problem with CRecordset/CDatabase Pin
Anonymous22-Aug-04 8:41
Anonymous22-Aug-04 8:41 
GeneralEval Copy Pin
shiraztk19-Aug-04 0:37
shiraztk19-Aug-04 0:37 
GeneralRe: Eval Copy Pin
Antti Keskinen19-Aug-04 1:03
Antti Keskinen19-Aug-04 1:03 
GeneralRe: Eval Copy Pin
shiraztk19-Aug-04 1:53
shiraztk19-Aug-04 1:53 
GeneralRe: Eval Copy Pin
John M. Drescher19-Aug-04 2:08
John M. Drescher19-Aug-04 2:08 
GeneralRe: Eval Copy Pin
shiraztk19-Aug-04 2:55
shiraztk19-Aug-04 2:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.