4
votes
13answers
1k views
Why use infinite loops?
Another poster asked about preferred syntax for infinite loops.
A follow-up question: Why do you …
3
votes
What is the most spectacular way to shoot yourself in the foot with C++?
Obfuscation. Things like automatic constructors that do too much, overriding operators, throwing exceptions, etc. Even macros to some extent.
C's beauty is that you can look at a snippet of …
2
votes
What language/platform would you recommend for CPU-bound application?
As lobrien said, you haven't given us any information to tell you if hand-optimized ASM code would help... which means the answer is probably, "not yet."
Have you run your code with a profi …
1
vote
switch case vs if else
Note too that the if/else construct can be more efficient if you know certain cases are more likely than others.
…
2
votes
Better Way To Use C++ Named Parameter Idiom?
Could you just chain the method calls by reverse order of inheritance?
So in your example you'd do something like
Window window = CreateWindow("foo").menu(hmenu).owner(hwnd).at(0,0) …
1
vote
0
votes
Extending an existing class like a namespace (C++)?
You could do something COM-like, where the base class supports a QueryInterface() method which lets you ask for an interface that has that method on it. This is fairly trivial to implement in C++, …
2
votes
Dynamic Arrays
If for some reason you don't have access to STL -- or want to learn how to do this yourself -- you could use an algorithm like this:
Allocate your array as some arbitrary size, and remember …
1
vote
Does C++ still matter?
I think it's very useful to learn. You may or may not need it professionally, but it is neat to learn a transparent object-oriented language. By "transparent" I mean that it's relatively easy (and …
0
votes
What’s the difference between a derived object and a base object in c++?
Are you asking about the respective objects' representation in memory?
Both the base class and the derived class will have a table of pointers to their virtual functions. Depending on which …
1
vote
Preparation for a C++ interview
The necessary (but not sufficient) part of doing well on an interview about C++ is being good at writing code in C++. The only way to be good at writing code in C++ is to do it, a lot.
Good …
0
votes
Memory Leak Analysis
See the "Who called HeapAlloc" entry on this page: http://www.windbg.info/doc/1-common-cmds.html
…
-1
votes
C++ passing const string references in methods?
How is 'name' declared? It seems like maybe it's declared as a reference instead of an object.
…
0
votes
How can i learn programming with c++ and c#
Find yourself a fun project, it doesn't have to be practical. Implement it. Implement it again in the other language (you will learn a whole different set of skills). Some suggestions:
…
5
votes
Character arrays question C++
The other difference is that your first example will corrupt data on the heap, while the second will corrupt data on the stack. Neither allocates room for the trailing \0.
…
