Click here to Skip to main content
15,885,985 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: An 'If' statement before my char declaration is not allowing my program to compile......why? Pin
CPallini22-Mar-09 6:23
mveCPallini22-Mar-09 6:23 
AnswerRe: An 'If' statement before my char declaration is not allowing my program to compile......why? Pin
ky_rerun22-Mar-09 15:05
ky_rerun22-Mar-09 15:05 
QuestionConverting a lowercase letter to uppercase while keyboard input Pin
pandit8422-Mar-09 3:58
pandit8422-Mar-09 3:58 
AnswerRe: Converting a lowercase letter to uppercase while keyboard input Pin
Yusuf22-Mar-09 4:52
Yusuf22-Mar-09 4:52 
QuestionRe: Converting a lowercase letter to uppercase while keyboard input Pin
David Crow22-Mar-09 16:47
David Crow22-Mar-09 16:47 
QuestionGood ol static member inits Pin
Eytukan21-Mar-09 21:45
Eytukan21-Mar-09 21:45 
AnswerRe: Good ol static member inits Pin
Gary R. Wheeler21-Mar-09 22:26
Gary R. Wheeler21-Mar-09 22:26 
GeneralRe: Good ol static member inits Pin
Eytukan21-Mar-09 22:59
Eytukan21-Mar-09 22:59 
Gary R. Wheeler wrote:
like in C#? C++ doesn't have static constructors. I don't know if C+0x is going to support that or not (it might be nice if it did).


Yeah something similar.

Gary R. Wheeler wrote:
With an instance constructor, you can set static members just like instance members. Each instance of a class can modify a static member.


Smile | :) Yup, but for example:

class CodeProject
{
  static int x;
  int y;
   CodeProject()
  {
    x=0;
    y=0;
  }
};


The above won't work without we initializing it again in the .cpp.(int CodeProject::x=0). In specific it must be in .cpp - it won't work if we initialize the static member in the header. Just thought about these limitations & felt it might be possible to disguise a static member as an instance member and treat it the same way. (though internal implementation would differ).

And yup, I wish C+0x have this feature unless they've been following this way for any specific reasons.

He never answers anyone who replies to him. I've taken to calling him a retard, which is not fair to retards everywhere.-Christian Graus

GeneralRe: Good ol static member inits Pin
Gary R. Wheeler21-Mar-09 23:28
Gary R. Wheeler21-Mar-09 23:28 
GeneralRe: Good ol static member inits Pin
Eytukan21-Mar-09 23:44
Eytukan21-Mar-09 23:44 
GeneralRe: Good ol static member inits Pin
Gary R. Wheeler21-Mar-09 23:58
Gary R. Wheeler21-Mar-09 23:58 
GeneralRe: Good ol static member inits Pin
Eytukan22-Mar-09 0:05
Eytukan22-Mar-09 0:05 
GeneralRe: Good ol static member inits Pin
Stuart Dootson23-Mar-09 0:31
professionalStuart Dootson23-Mar-09 0:31 
GeneralRe: Good ol static member inits Pin
Eytukan23-Mar-09 2:23
Eytukan23-Mar-09 2:23 
AnswerRe: Good ol static member inits Pin
cmk22-Mar-09 10:28
cmk22-Mar-09 10:28 
GeneralRe: Good ol static member inits Pin
Eytukan22-Mar-09 18:01
Eytukan22-Mar-09 18:01 
GeneralRe: Good ol static member inits Pin
cmk22-Mar-09 20:35
cmk22-Mar-09 20:35 
GeneralRe: Good ol static member inits Pin
Eytukan23-Mar-09 2:29
Eytukan23-Mar-09 2:29 
AnswerRe: Good ol static member inits Pin
Niklas L23-Mar-09 1:55
Niklas L23-Mar-09 1:55 
GeneralRe: Good ol static member inits Pin
Eytukan23-Mar-09 2:35
Eytukan23-Mar-09 2:35 
QuestionNeed a AVC/H.264 Video Decoder Pin
Andy Rama21-Mar-09 21:10
Andy Rama21-Mar-09 21:10 
AnswerRe: Need a AVC/H.264 Video Decoder Pin
Michael Schubert22-Mar-09 1:20
Michael Schubert22-Mar-09 1:20 
GeneralRe: Need a AVC/H.264 Video Decoder Pin
Andy Rama22-Mar-09 20:26
Andy Rama22-Mar-09 20:26 
GeneralRe: Need a AVC/H.264 Video Decoder Pin
Andy Rama22-Mar-09 20:50
Andy Rama22-Mar-09 20:50 
GeneralRe: Need a AVC/H.264 Video Decoder Pin
Michael Schubert22-Mar-09 21:14
Michael Schubert22-Mar-09 21:14 

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.