Click here to Skip to main content
15,892,965 members
Home / Discussions / Design and Architecture
   

Design and Architecture

 
GeneralRe: Need guidance on designing and preparing MCPD Pin
Richard MacCutchan4-Jan-11 21:39
mveRichard MacCutchan4-Jan-11 21:39 
QuestionPossible inefficiency in post-increment FOR loop? Pin
Xpnctoc30-Dec-10 15:12
Xpnctoc30-Dec-10 15:12 
AnswerRe: Possible inefficiency in post-increment FOR loop? Pin
Richard MacCutchan30-Dec-10 23:05
mveRichard MacCutchan30-Dec-10 23:05 
AnswerRe: Possible inefficiency in post-increment FOR loop? Pin
Luc Pattyn30-Dec-10 23:37
sitebuilderLuc Pattyn30-Dec-10 23:37 
GeneralRe: Possible inefficiency in post-increment FOR loop? Pin
fat_boy31-Dec-10 2:12
fat_boy31-Dec-10 2:12 
AnswerRe: Possible inefficiency in post-increment FOR loop? Pin
fat_boy31-Dec-10 2:13
fat_boy31-Dec-10 2:13 
AnswerRe: Possible inefficiency in post-increment FOR loop? Pin
Peter_in_27804-Jan-11 18:21
professionalPeter_in_27804-Jan-11 18:21 
AnswerRe: Possible inefficiency in post-increment FOR loop? Pin
dasblinkenlight13-Jan-11 2:18
dasblinkenlight13-Jan-11 2:18 
Pre-increment's return value is the iterator itself, while post-increment must return a copy of the iterator before it has been incremented. Since the for loop discards the return value, using the pre-increment version of the ++ operator saves some CPU cycles by not making a copy that will be discarded anyway. A longer explanation is here.[^]

Edit: Oops, I did not see that there were so many replies already. Only the OP was visible at the bottom of the forums window.
QuestionDiagramming? Pin
dawmail33328-Dec-10 22:48
dawmail33328-Dec-10 22:48 
AnswerRe: Diagramming? Pin
fat_boy31-Dec-10 2:18
fat_boy31-Dec-10 2:18 
QuestionDeveloping to try to make a difference? Pin
Todd Baxter28-Dec-10 3:16
Todd Baxter28-Dec-10 3:16 
AnswerRe: Developing to try to make a difference? Pin
Pete O'Hanlon28-Dec-10 3:27
mvePete O'Hanlon28-Dec-10 3:27 
GeneralRe: Developing to try to make a difference? Pin
Todd Baxter28-Dec-10 5:06
Todd Baxter28-Dec-10 5:06 
GeneralRe: Developing to try to make a difference? Pin
jk chan28-Dec-10 21:49
jk chan28-Dec-10 21:49 
GeneralRe: Developing to try to make a difference? Pin
Todd Baxter29-Dec-10 3:15
Todd Baxter29-Dec-10 3:15 
GeneralRe: Developing to try to make a difference? Pin
jk chan29-Dec-10 4:01
jk chan29-Dec-10 4:01 
AnswerRe: Developing to try to make a difference? [modified] Pin
RobCroll4-Jan-11 3:24
RobCroll4-Jan-11 3:24 
GeneralRe: Developing to try to make a difference? Pin
Todd Baxter4-Jan-11 5:04
Todd Baxter4-Jan-11 5:04 
GeneralRe: Developing to try to make a difference? Pin
RobCroll4-Jan-11 6:21
RobCroll4-Jan-11 6:21 
GeneralRe: Developing to try to make a difference? Pin
Todd Baxter4-Jan-11 6:44
Todd Baxter4-Jan-11 6:44 
GeneralRe: Developing to try to make a difference? Pin
RobCroll4-Jan-11 7:29
RobCroll4-Jan-11 7:29 
GeneralRe: Developing to try to make a difference? Pin
Mycroft Holmes13-Jan-11 12:16
professionalMycroft Holmes13-Jan-11 12:16 
GeneralRe: Developing to try to make a difference? Pin
Todd Baxter17-Jan-11 2:37
Todd Baxter17-Jan-11 2:37 
GeneralRe: Developing to try to make a difference? Pin
Todd Baxter17-Jan-11 4:08
Todd Baxter17-Jan-11 4:08 
QuestionHelp: Which design method should I use for this particular case? Pin
xyzsnl27-Dec-10 2:44
xyzsnl27-Dec-10 2:44 

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.