Click here to Skip to main content
15,917,652 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Read from command prompt Pin
Kiran Pinjala19-May-08 0:33
Kiran Pinjala19-May-08 0:33 
AnswerRe: Read from command prompt Pin
Rajkumar R19-May-08 0:39
Rajkumar R19-May-08 0:39 
AnswerRe: Read from command prompt Pin
David Crow19-May-08 3:52
David Crow19-May-08 3:52 
AnswerRe: Read from command prompt Pin
sashoalm19-May-08 6:12
sashoalm19-May-08 6:12 
Questionaudio connection to PC Pin
Sunshine Always18-May-08 23:33
Sunshine Always18-May-08 23:33 
Questionc++ Pin
lipun18-May-08 23:29
lipun18-May-08 23:29 
AnswerRe: c++ Pin
Rajkumar R18-May-08 23:35
Rajkumar R18-May-08 23:35 
AnswerRe: c++ Pin
toxcct18-May-08 23:45
toxcct18-May-08 23:45 
I don't know why you're asking these ; it sounds like questions for a quite advanced C++ programmer, but still you can't answer them ?

anywayz :
1) you use inline functions whenever you want the function call to be replaced by its body. it saves the time of a function call, by which datas are passed through the call stack, but increases the size of your application. note that the telling a function to be inline will not always make it inlined. it's up to the compiler to decide of the complexity, then inline or not.

2) all the STL containers don't have contiguous elements, that's why simple pointers cannot work on the STL. BTW, iterators are defined to work as easy as pointers on their containers.

3) if you want a class to be final (not inheritable), make its constructors private...


Questionsymbol undefined Pin
subramanyeswari18-May-08 23:05
subramanyeswari18-May-08 23:05 
QuestionRe: symbol undefined Pin
CPallini18-May-08 23:09
mveCPallini18-May-08 23:09 
AnswerRe: symbol undefined Pin
subramanyeswari18-May-08 23:14
subramanyeswari18-May-08 23:14 
GeneralRe: symbol undefined Pin
toxcct18-May-08 23:19
toxcct18-May-08 23:19 
GeneralRe: symbol undefined Pin
CPallini18-May-08 23:24
mveCPallini18-May-08 23:24 
AnswerRe: symbol undefined Pin
Cedric Moonen18-May-08 23:09
Cedric Moonen18-May-08 23:09 
QuestionRe: symbol undefined Pin
Rajkumar R18-May-08 23:14
Rajkumar R18-May-08 23:14 
AnswerRe: symbol undefined Pin
subramanyeswari18-May-08 23:24
subramanyeswari18-May-08 23:24 
QuestionRe: symbol undefined Pin
Rajkumar R18-May-08 23:48
Rajkumar R18-May-08 23:48 
AnswerRe: symbol undefined Pin
subramanyeswari18-May-08 23:53
subramanyeswari18-May-08 23:53 
GeneralRe: symbol undefined Pin
Rajkumar R19-May-08 0:47
Rajkumar R19-May-08 0:47 
Questiondatatransfer Pin
Mohanraj D18-May-08 22:59
Mohanraj D18-May-08 22:59 
AnswerRe: datatransfer Pin
CPallini18-May-08 23:07
mveCPallini18-May-08 23:07 
GeneralRe: datatransfer Pin
Mohanraj D18-May-08 23:19
Mohanraj D18-May-08 23:19 
GeneralRe: datatransfer Pin
CPallini18-May-08 23:26
mveCPallini18-May-08 23:26 
GeneralRe: datatransfer Pin
Mohanraj D18-May-08 23:31
Mohanraj D18-May-08 23:31 
GeneralRe: datatransfer Pin
CPallini18-May-08 23:37
mveCPallini18-May-08 23:37 

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.