Click here to Skip to main content
15,895,538 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Key stroke watching Pin
Nishad S16-May-06 19:06
Nishad S16-May-06 19:06 
GeneralRe: Key stroke watching Pin
Nibu babu thomas16-May-06 19:17
Nibu babu thomas16-May-06 19:17 
GeneralRe: Key stroke watching Pin
Nishad S16-May-06 19:21
Nishad S16-May-06 19:21 
QuestionCArray memory issue Pin
mohanrajh16-May-06 18:15
mohanrajh16-May-06 18:15 
AnswerRe: CArray memory issue Pin
Christian Graus16-May-06 18:24
protectorChristian Graus16-May-06 18:24 
GeneralRe: CArray memory issue Pin
NiceNaidu16-May-06 18:36
NiceNaidu16-May-06 18:36 
AnswerRe: CArray memory issue Pin
Laxman Auti16-May-06 18:29
Laxman Auti16-May-06 18:29 
AnswerRe: CArray memory issue Pin
grigsoft16-May-06 19:08
grigsoft16-May-06 19:08 
With SetSize your code runs faster - memory for 1000 items is allocated and not copied\extended during adding new items. Without it array will allocate new memory several times, copying all items to new location.
FreeExtra just free unused memory - but it have to copy whole array to new location, which cost time. So I almost never use it - if you will want to add new item afterwards, you will cause array to copy items again.


Igor Green
http://www.grigsoft.com/ - files and folders comparison tools
QuestionRe: CArray memory issue Pin
mohanrajh17-May-06 15:08
mohanrajh17-May-06 15:08 
AnswerRe: CArray memory issue Pin
grigsoft17-May-06 20:55
grigsoft17-May-06 20:55 
Questionstring.. Pin
Prinz Ryoiji16-May-06 18:08
Prinz Ryoiji16-May-06 18:08 
QuestionRe: string.. Pin
Nibu babu thomas16-May-06 18:10
Nibu babu thomas16-May-06 18:10 
AnswerRe: string.. Pin
Prinz Ryoiji16-May-06 18:17
Prinz Ryoiji16-May-06 18:17 
GeneralRe: string.. Pin
Nibu babu thomas16-May-06 18:24
Nibu babu thomas16-May-06 18:24 
GeneralRe: string.. Pin
Prinz Ryoiji16-May-06 18:33
Prinz Ryoiji16-May-06 18:33 
GeneralRe: string.. Pin
Maxwell Chen16-May-06 18:35
Maxwell Chen16-May-06 18:35 
GeneralRe: string.. Pin
Prinz Ryoiji16-May-06 18:45
Prinz Ryoiji16-May-06 18:45 
JokeRe: string.. Pin
Nibu babu thomas16-May-06 18:57
Nibu babu thomas16-May-06 18:57 
GeneralRe: string.. Pin
Maxwell Chen16-May-06 19:47
Maxwell Chen16-May-06 19:47 
GeneralRe: string.. Pin
Nibu babu thomas16-May-06 19:50
Nibu babu thomas16-May-06 19:50 
GeneralRe: string.. Pin
Maxwell Chen16-May-06 20:23
Maxwell Chen16-May-06 20:23 
GeneralRe: string.. Pin
Nibu babu thomas16-May-06 20:24
Nibu babu thomas16-May-06 20:24 
GeneralRe: string.. Pin
Maxwell Chen16-May-06 20:34
Maxwell Chen16-May-06 20:34 
GeneralRe: string.. Pin
Nibu babu thomas16-May-06 20:38
Nibu babu thomas16-May-06 20:38 
GeneralRe: string.. Pin
Maxwell Chen16-May-06 20:40
Maxwell Chen16-May-06 20:40 

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.