Click here to Skip to main content
15,884,176 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: C++ compiler needed plzzzz Pin
Maximilien16-Jan-11 14:51
Maximilien16-Jan-11 14:51 
AnswerRe: C++ compiler needed plzzzz Pin
Richard MacCutchan17-Jan-11 0:33
mveRichard MacCutchan17-Jan-11 0:33 
AnswerRe: C++ compiler needed plzzzz Pin
Asit Banerjee18-Jan-11 21:42
Asit Banerjee18-Jan-11 21:42 
QuestionADO in MFC.....getting problems Pin
AmbiguousName16-Jan-11 3:57
AmbiguousName16-Jan-11 3:57 
AnswerRe: ADO in MFC.....getting problems Pin
User 742933816-Jan-11 4:24
professionalUser 742933816-Jan-11 4:24 
AnswerRe: ADO in MFC.....getting problems Pin
AmbiguousName16-Jan-11 4:30
AmbiguousName16-Jan-11 4:30 
AnswerRe: ADO in MFC.....getting problems Pin
PJ Arends16-Jan-11 11:55
professionalPJ Arends16-Jan-11 11:55 
Questionoperator ":" new for me in C++ Pin
aesthetic.crazy16-Jan-11 0:53
aesthetic.crazy16-Jan-11 0:53 
i want to know what is ":" operator in C++ called. i know how it is used in access specifiers but i saw something new for me.

destructor.hpp
class A {
int i;
public:
A(); //
A(int a);//
~A(); //
};

destructor.cpp
#include "destructor.hpp"
#include <iostream>
using namespace std;
A::A() : i(0) // WHAT IS ": i(0)" ?, WHAT IS ":" MEAN HERE ? Confused | :confused:
{
cout << "default constructor of A" << endl;
}
A::A(int a) : i(a)
{
cout << "constructor of A(" << i << ")" << endl;
}
A::~A()
{
cout << "Destructor of A (i=" << i << ")" << endl;
}
AnswerRe: operator ":" new for me in C++ Pin
Richard MacCutchan16-Jan-11 1:28
mveRichard MacCutchan16-Jan-11 1:28 
GeneralRe: operator ":" new for me in C++ Pin
aesthetic.crazy16-Jan-11 6:51
aesthetic.crazy16-Jan-11 6:51 
GeneralRe: operator ":" new for me in C++ Pin
Richard MacCutchan16-Jan-11 7:04
mveRichard MacCutchan16-Jan-11 7:04 
AnswerRe: operator ":" new for me in C++ PinPopular
Iain Clarke, Warrior Programmer16-Jan-11 1:36
Iain Clarke, Warrior Programmer16-Jan-11 1:36 
AnswerRe: operator ":" new for me in C++ PinPopular
Aescleal16-Jan-11 9:01
Aescleal16-Jan-11 9:01 
AnswerRe: operator ":" new for me in C++ Pin
moemass17-Jan-11 3:12
moemass17-Jan-11 3:12 
QuestionHow to get computer color setting? Pin
includeh1015-Jan-11 20:37
includeh1015-Jan-11 20:37 
AnswerRe: How to get computer color setting? Pin
Andrew Brock15-Jan-11 20:53
Andrew Brock15-Jan-11 20:53 
GeneralRe: How to get computer color setting? Pin
includeh1016-Jan-11 2:47
includeh1016-Jan-11 2:47 
GeneralRe: How to get computer color setting? Pin
Andrew Brock16-Jan-11 2:51
Andrew Brock16-Jan-11 2:51 
QuestionSorting data using std::map or std::multimap Pin
cmacgowan15-Jan-11 14:19
cmacgowan15-Jan-11 14:19 
AnswerRe: Sorting data using std::map or std::multimap Pin
Andrew Brock15-Jan-11 18:08
Andrew Brock15-Jan-11 18:08 
GeneralRe: Sorting data using std::map or std::multimap Pin
cmacgowan16-Jan-11 11:01
cmacgowan16-Jan-11 11:01 
AnswerRe: Sorting data using std::map or std::multimap Pin
Aescleal16-Jan-11 6:10
Aescleal16-Jan-11 6:10 
GeneralRe: Sorting data using std::map or std::multimap Pin
cmacgowan16-Jan-11 11:02
cmacgowan16-Jan-11 11:02 
QuestionSoftware Keyboard Simulator Pin
RedDragon2k15-Jan-11 4:48
RedDragon2k15-Jan-11 4:48 
AnswerRe: Software Keyboard Simulator Pin
jschell15-Jan-11 10:02
jschell15-Jan-11 10:02 

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.