Click here to Skip to main content
15,909,953 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Select User dialog Pin
Mark Salsbery26-Jan-07 9:47
Mark Salsbery26-Jan-07 9:47 
GeneralRe: Select User dialog Pin
Ami Bar26-Jan-07 9:52
Ami Bar26-Jan-07 9:52 
QuestionRe: Select User dialog Pin
David Crow26-Jan-07 10:28
David Crow26-Jan-07 10:28 
AnswerRe: Select User dialog Pin
Ami Bar26-Jan-07 10:36
Ami Bar26-Jan-07 10:36 
QuestionHow template in C++ Work ? Pin
Yanshof26-Jan-07 4:56
Yanshof26-Jan-07 4:56 
AnswerRe: How template in C++ Work ? Pin
Reagan Conservative26-Jan-07 6:08
Reagan Conservative26-Jan-07 6:08 
AnswerRe: How template in C++ Work ? Pin
Waldermort26-Jan-07 7:02
Waldermort26-Jan-07 7:02 
AnswerRe: How template in C++ Work ? Pin
Eytukan26-Jan-07 7:04
Eytukan26-Jan-07 7:04 
Templates, It just creates different type of classes or functions for different type of types. Multiple types of codes for the same template. Nothing so magical in it Wink | ;)
Eg:
<br />
template<class T> <br />
class  test<br />
{<br />
    T typeval;<br />
<br />
};<br />

And when you say, test<int> i;
it creates,
<br />
class test<br />
{<br />
      int typeval;<br />
};<br />

if you use a float,test<float> i; it creates,
<br />
class test<br />
{<br />
      float typeval;<br />
};<br />

Got it?



Code-Frog:So if this is Pumpkinhead. Time for him to run and hide. It's an interesting thought really.

AnswerRe: How template in C++ Work ? Pin
Mark Salsbery26-Jan-07 7:07
Mark Salsbery26-Jan-07 7:07 
Questiongetting list of processes Pin
saqib8226-Jan-07 2:28
saqib8226-Jan-07 2:28 
AnswerRe: getting list of processes Pin
nullable.type26-Jan-07 3:01
nullable.type26-Jan-07 3:01 
AnswerRe: getting list of processes Pin
David Crow26-Jan-07 3:03
David Crow26-Jan-07 3:03 
AnswerRe: getting list of processes Pin
ThatsAlok26-Jan-07 20:05
ThatsAlok26-Jan-07 20:05 
AnswerRe: getting list of processes Pin
Hamid_RT27-Jan-07 0:52
Hamid_RT27-Jan-07 0:52 
QuestionSetRedraw(FALSE) Pin
baerten26-Jan-07 0:09
baerten26-Jan-07 0:09 
AnswerRe: SetRedraw(FALSE) Pin
#realJSOP26-Jan-07 0:14
professional#realJSOP26-Jan-07 0:14 
GeneralRe: SetRedraw(FALSE) Pin
baerten26-Jan-07 0:41
baerten26-Jan-07 0:41 
GeneralRe: SetRedraw(FALSE) Pin
#realJSOP26-Jan-07 2:46
professional#realJSOP26-Jan-07 2:46 
AnswerRe: SetRedraw(FALSE) Pin
Rage26-Jan-07 0:25
professionalRage26-Jan-07 0:25 
GeneralRe: SetRedraw(FALSE) Pin
baerten26-Jan-07 0:47
baerten26-Jan-07 0:47 
AnswerRe: SetRedraw(FALSE) Pin
Jason Henderson26-Jan-07 5:47
Jason Henderson26-Jan-07 5:47 
QuestionGeneric exception classes ? Pin
Mr.Brainley26-Jan-07 0:02
Mr.Brainley26-Jan-07 0:02 
QuestionCoInitializeEx Creates an Error Pin
#realJSOP26-Jan-07 0:00
professional#realJSOP26-Jan-07 0:00 
AnswerRe: CoInitializeEx Creates an Error Pin
Wes Aday26-Jan-07 4:29
professionalWes Aday26-Jan-07 4:29 
AnswerRe: CoInitializeEx Creates an Error Pin
Mark Salsbery26-Jan-07 6:35
Mark Salsbery26-Jan-07 6:35 

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.