Click here to Skip to main content
15,896,154 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Arrays! Pin
Antony M Kancidrowski4-Aug-04 3:06
Antony M Kancidrowski4-Aug-04 3:06 
GeneralRe: Arrays! Pin
Jaime Stuardo4-Aug-04 3:35
Jaime Stuardo4-Aug-04 3:35 
GeneralRe: Arrays! Pin
Per Nilsson4-Aug-04 4:08
Per Nilsson4-Aug-04 4:08 
GeneralRe: Arrays! Pin
V.4-Aug-04 3:43
professionalV.4-Aug-04 3:43 
GeneralRe: Arrays! Pin
Tim Smith4-Aug-04 3:55
Tim Smith4-Aug-04 3:55 
GeneralRe: Arrays! Pin
Tim Smith4-Aug-04 3:57
Tim Smith4-Aug-04 3:57 
GeneralRe: Arrays! Pin
digwizfox4-Aug-04 6:16
digwizfox4-Aug-04 6:16 
GeneralSTL iterators and post/pre incrementing Pin
Jim Crafton4-Aug-04 2:49
Jim Crafton4-Aug-04 2:49 
Someone on the VCF forums posted this, which I found a little strange, and was wondering if anyone here knew anything more:

"Also, when iterating an STL iterator, pre-increment (++it) should be preferred to post-increment (it++) as the latter creates a copy of the iterator."

Is this really true?

If I have code like:
vector<int> vec;
//populate vec
vector<int>::iterator it = vec.begin();
while ( it != vec.end() ) {
  int& i = *it;
  i = i * 45;
  it ++;
}


Should I change it to:

vector<int> vec;
//populate vec
vector<int>::iterator it = vec.begin();
while ( it != vec.end() ) {
  int& i = *it;
  i = i * 45;
  ++ it;
}




¡El diablo está en mis pantalones! ¡Mire, mire!

Real Mentats use only 100% pure, unfooled around with Sapho Juice(tm)!

SELECT * FROM User WHERE Clue > 0
0 rows returned

GeneralRe: STL iterators and post/pre incrementing Pin
Antony M Kancidrowski4-Aug-04 2:57
Antony M Kancidrowski4-Aug-04 2:57 
GeneralRe: STL iterators and post/pre incrementing Pin
RChin4-Aug-04 3:45
RChin4-Aug-04 3:45 
GeneralRe: STL iterators and post/pre incrementing Pin
Nitron4-Aug-04 3:58
Nitron4-Aug-04 3:58 
GeneralRe: STL iterators and post/pre incrementing Pin
digwizfox4-Aug-04 6:25
digwizfox4-Aug-04 6:25 
GeneralRe: STL iterators and post/pre incrementing Pin
Tim Smith4-Aug-04 4:05
Tim Smith4-Aug-04 4:05 
GeneralRe: STL iterators and post/pre incrementing Pin
Anonymous4-Aug-04 17:58
Anonymous4-Aug-04 17:58 
Generalsorry Pin
yingkou4-Aug-04 2:33
yingkou4-Aug-04 2:33 
GeneralRe: sorry Pin
Antony M Kancidrowski4-Aug-04 2:59
Antony M Kancidrowski4-Aug-04 2:59 
GeneralRe: sorry Pin
palbano4-Aug-04 4:59
palbano4-Aug-04 4:59 
GeneralRe: sorry Pin
yingkou4-Aug-04 15:19
yingkou4-Aug-04 15:19 
GeneralRe: sorry Pin
bikram singh5-Aug-04 7:19
bikram singh5-Aug-04 7:19 
QuestionHow to use a external Vfp DLL with VC++ Pin
paulotharso4-Aug-04 1:42
paulotharso4-Aug-04 1:42 
Generalhandling message on log-on Pin
Anonymous4-Aug-04 1:10
Anonymous4-Aug-04 1:10 
GeneralRe: handling message on log-on Pin
David Crow4-Aug-04 3:04
David Crow4-Aug-04 3:04 
GeneralRe: handling message on log-on Pin
bikram singh5-Aug-04 7:27
bikram singh5-Aug-04 7:27 
GeneralDoc/View based app without menu bar Pin
Suresh Chandra M4-Aug-04 0:34
Suresh Chandra M4-Aug-04 0:34 
GeneralRe: Doc/View based app without menu bar Pin
Michael P Butler4-Aug-04 0:48
Michael P Butler4-Aug-04 0:48 

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.