Search Results

7
votes

How to alter a float by its smallest increment (or close to it)?

You've had some specific advise for this case already, but on top of that --- if you haven't already I'll urge you to read …
2
votes

Equation Solvers for C++

You're venturing into the world of numerical analysis, and here be dragons. Seemingly small differences in specification can make a huge difference in what is the right approach. I hesitat …
7
votes

C++ as a first language

Lots of support for c++ here, but I have to disagree. Every language has it's plusses and minuses (some achieve a better balance than others, of course). That being said, for a first langu …
3
votes

Strange results with floating-point comparison

Short story: Your tests are incorrect because floating point numbers do not behave like you probably expect them to. Particularly things like "denom == 0" are problematic. Sun has been …
1
vote

Line Segment container for fast Ray intersection? (2D)

How are you certain that you'll hit any of them? If they're lines, it's unlikely. If it's really a polygon (i.e. planar) that you're trying to test, the usual way to do this sort of thing i …
2
votes

Should we still be optimizing “in the small”?

Don't try to guess what your compiler is doing. If you've already determined that you need to optimize something at this level, isolate that bit and look at the generated assembly. If you can see …
0
votes

What does it mean to instantiate an object using curly braces in C++?

However, I have hundreds of these PhoneNumber instances already created with only 3 fields (xxx, xxx, xxxx). So I don't want to go through and modify EVERY single instantiati …
5
votes

How long can template compilation really take?

The template mechanism is Turing-complete. This means that in theory at least, any computation that can be done can be done at compile time this way (In practice you may run into hard limits on tem …
0
votes

How is C++’s multiple inheritance implemented?

This is an interesting issue that really isn't C++ specific. Things get more complex also when you have a language with multiple dispatch as well as multiple inheritance (e.g. CLOS). Peo …