Click here to Skip to main content
15,881,424 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Too FEW Arguments in BOOL? Pin
rbwest8614-Apr-09 1:59
rbwest8614-Apr-09 1:59 
QuestionC++ FFT subroutine Pin
mrby12311-Apr-09 20:49
mrby12311-Apr-09 20:49 
AnswerRe: C++ FFT subroutine Pin
CPallini11-Apr-09 22:40
mveCPallini11-Apr-09 22:40 
Questioncan someone explain to a newby what the top line argument call. Pin
johnathan warfield11-Apr-09 19:53
johnathan warfield11-Apr-09 19:53 
AnswerRe: can someone explain to a newby what the top line argument call. Pin
«_Superman_»11-Apr-09 20:54
professional«_Superman_»11-Apr-09 20:54 
AnswerRe: can someone explain to a newby what the top line argument call. Pin
David Crow13-Apr-09 3:36
David Crow13-Apr-09 3:36 
AnswerRe: can someone explain to a newby what the top line argument call. Pin
johnathan warfield18-Apr-09 8:19
johnathan warfield18-Apr-09 8:19 
QuestionWhat does the : x( value ) mean in this constructor ??? Pin
johnathan warfield11-Apr-09 18:25
johnathan warfield11-Apr-09 18:25 
here is a code snippet in Dietels 5th edition that i'm reading for my OOP class. I don't understand what the : x( value ) means in the constructor. The comment says initialize x to value, but can someone explain that to me in more detail please. I know its not inheritance because i haven't got to the chapter yet. Can some one please help. Here is the code snippet.


class Test
8 {
9 public:
10 Test( int = 0 ); // default constructor
11 void print() const;
12 private:
13 int x;
14 }; // end class Test
15
16 // constructor
17 Test::Test( int value )
18 : x( value ) // initialize x to value
19 {
20 // empty body
21 } // end constructor Test
.
.
.
AnswerRe: What does the : x( value ) mean in this constructor ??? Pin
«_Superman_»11-Apr-09 20:50
professional«_Superman_»11-Apr-09 20:50 
GeneralRe: What does the : x( value ) mean in this constructor ??? Pin
johnathan warfield12-Apr-09 7:07
johnathan warfield12-Apr-09 7:07 
GeneralRe: What does the : x( value ) mean in this constructor ??? Pin
«_Superman_»12-Apr-09 18:37
professional«_Superman_»12-Apr-09 18:37 
QuestionHard Disk(Recovery) Pin
kikivml11-Apr-09 9:10
kikivml11-Apr-09 9:10 
AnswerRe: Hard Disk(Recovery) Pin
Hamid_RT11-Apr-09 19:48
Hamid_RT11-Apr-09 19:48 
QuestionRegistry REG_BINARY Problem Pin
locoone11-Apr-09 8:35
locoone11-Apr-09 8:35 
AnswerRe: Registry REG_BINARY Problem Pin
Baltoro11-Apr-09 11:21
Baltoro11-Apr-09 11:21 
GeneralRe: Registry REG_BINARY Problem Pin
locoone11-Apr-09 20:09
locoone11-Apr-09 20:09 
QuestionRe: Registry REG_BINARY Problem Pin
CPallini11-Apr-09 22:46
mveCPallini11-Apr-09 22:46 
AnswerRe: Registry REG_BINARY Problem Pin
locoone12-Apr-09 2:53
locoone12-Apr-09 2:53 
GeneralRe: Registry REG_BINARY Problem Pin
CPallini12-Apr-09 9:58
mveCPallini12-Apr-09 9:58 
GeneralRe: Registry REG_BINARY Problem Pin
locoone12-Apr-09 10:46
locoone12-Apr-09 10:46 
GeneralRe: Registry REG_BINARY Problem Pin
CPallini12-Apr-09 11:17
mveCPallini12-Apr-09 11:17 
GeneralRe: Registry REG_BINARY Problem [modified] Pin
locoone12-Apr-09 11:50
locoone12-Apr-09 11:50 
GeneralRe: Registry REG_BINARY Problem Pin
CPallini13-Apr-09 4:46
mveCPallini13-Apr-09 4:46 
GeneralRe: Registry REG_BINARY Problem Pin
locoone13-Apr-09 12:40
locoone13-Apr-09 12:40 
QuestionRemoving the MS-DOS stub from a PE File Pin
iNoble11-Apr-09 8:05
iNoble11-Apr-09 8:05 

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.