Click here to Skip to main content
15,908,111 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Can I download any file from any website automaticlly? Pin
Nibu babu thomas28-May-08 0:17
Nibu babu thomas28-May-08 0:17 
GeneralRe: Can I download any file from any website automaticlly? Pin
sumit.durg28-May-08 1:03
sumit.durg28-May-08 1:03 
GeneralRe: Can I download any file from any website automaticlly? Pin
Nibu babu thomas28-May-08 1:07
Nibu babu thomas28-May-08 1:07 
QuestionHorizontal Scrollbar in Workspace? Pin
Le@rner27-May-08 23:39
Le@rner27-May-08 23:39 
QuestionRegarding Reference variable Pin
kuttiam27-May-08 22:47
kuttiam27-May-08 22:47 
AnswerRe: Regarding Reference variable Pin
CPallini27-May-08 22:55
mveCPallini27-May-08 22:55 
AnswerRe: Regarding Reference variable Pin
Jijo.Raj27-May-08 22:56
Jijo.Raj27-May-08 22:56 
AnswerRe: Regarding Reference variable [modified] Pin
Nibu babu thomas27-May-08 22:57
Nibu babu thomas27-May-08 22:57 
kuttiam wrote:
I need to initialize it in the constructor. But, the compiler is giving an error.


You should initialize a reference variable in the constructor initialization list

e.g.

class MyClass
{
public:
  MyClass( int& RefVal ) : m_RefVal( RefVal ) // Ok
  {
      m_RefVal = RefVal;// Error, cannot do this here
  }

private:
  int& m_RefVal;
};


Since a reference variable is much like a constant var it must be initialized like a const var. i.e. initialize where it's declared and in classes we cannot initialize where it's declared hence initialization list is provided.


Nibu thomas
Microsoft MVP for VC++


Code must be written to be read, not by the compiler, but by another human being.

Programming Blog: http://nibuthomas.wordpress.com

modified on Wednesday, May 28, 2008 5:10 AM

Questioncannot add icon to tree control [modified] Pin
tataxin27-May-08 21:06
tataxin27-May-08 21:06 
AnswerRe: cannot add icon to tree control Pin
SandipG 27-May-08 21:18
SandipG 27-May-08 21:18 
NewsRe: cannot add icon to tree control Pin
tataxin27-May-08 21:39
tataxin27-May-08 21:39 
QuestionTrack the internet download and upload usage Pin
vicky0000027-May-08 20:54
vicky0000027-May-08 20:54 
AnswerRe: Track the internet download and upload usage Pin
sumit.durg28-May-08 0:10
sumit.durg28-May-08 0:10 
GeneralRe: Track the internet download and upload usage Pin
vicky000006-Jul-08 23:10
vicky000006-Jul-08 23:10 
AnswerRe: Track the internet download and upload usage Pin
Rajkumar R28-May-08 2:28
Rajkumar R28-May-08 2:28 
QuestionPaint Problem Pin
john563227-May-08 20:35
john563227-May-08 20:35 
AnswerRe: Paint Problem Pin
Naveen27-May-08 20:41
Naveen27-May-08 20:41 
AnswerRe: Paint Problem Pin
Cedric Moonen27-May-08 20:43
Cedric Moonen27-May-08 20:43 
Questionhow can enter the selected date value in editbox? Pin
Le@rner27-May-08 20:20
Le@rner27-May-08 20:20 
AnswerRe: how can enter the selected date value in editbox? [REPOST] Pin
Rajkumar R27-May-08 20:27
Rajkumar R27-May-08 20:27 
QuestionApplication is heavy and want to make it light Pin
prithaa27-May-08 20:14
prithaa27-May-08 20:14 
AnswerRe: Application is heavy and want to make it light Pin
Cedric Moonen27-May-08 20:23
Cedric Moonen27-May-08 20:23 
GeneralRe: Application is heavy and want to make it light Pin
prithaa27-May-08 20:27
prithaa27-May-08 20:27 
AnswerRe: Application is heavy and want to make it light Pin
Naveen27-May-08 20:33
Naveen27-May-08 20:33 
GeneralRe: Application is heavy and want to make it light Pin
prithaa27-May-08 20:46
prithaa27-May-08 20:46 

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.