What are the advantages and disadvantages of using one instead of the other in C++?
|
|
|
If you want to know the true answer, you should read What Every Computer Scientist Should Know About Floating-Point Arithmetic. In short, although Many compiler do extended floating point math in "non-strict" mode anyway (i.e. use a wider floating point type available in hardware, e.g. 80-bits and 128-bits floating), this should be taken into account as well. -- In practice, you can hardly see any different in speed -- they are natives to hardware anyway. |
|||||||||||||||||
|
|
This question is impossible to answer since there is no context to the question. Here are some things that can affect the choice:
If you have a specification, then that will guide you to the optimal choice. Otherwise, it's down to experience as to what to use. |
||||
|
|
|
Unless you have some specific reason to do otherwise, use double. Perhaps surprisingly, it is double and not float that is the "normal" floating-point type in C (and C++). The standard math functions such as sin and log take doubles as arguments, and return doubles. A normal floating-point literal, as when you write 3.14 in your program, has the type double. Not float. On typical modern computers, doubles will be just as fast as floats, or even faster, so performance is usually not a factor to consider, even for large calculations. (And those would have to be large calculations, or performance shouldn't even enter your mind. My several-years-old desktop computer adds five hundred million doubles in one second.) |
|||
|
|
|
Double is more precise but is coded on 8 bytes. float is only 4 bytes, so less room and less precision. You should be very careful if you have double and float in your application. I had a bug due to that in the past. One part of the code was using float while the rest of the code was using double. Copying double to float and then float to double can cause precision error that can have big impact. In my case, it was a chemical factory... hopefully it didn't have dramatic consequences :) I think that it is because of this kind of bug that the Ariane 6 rocket has exploded a few years ago!!! Think carefully about the type to be used for a variable |
|||||||||
|
|
I personnaly go for double all the time until I see some bottlenecks. Then I consider moving to float or optimizing some other part |
|||
|
|
|
This depends on how the compiler implements double. It's legal for double and float to be the same type (and it is on some systems). That being said, if they are indeed different, the main issue is precision. A double has a much higher precision due to it's difference in size. If the numbers you are using will commonly exceed the value of a float, then use a double. Several other people have mentioned performance isssues. That would be exactly last on my list of considerations. Correctness should be your #1 consideration. |
|||
|
|
|
Use whichever precision is required to achieve the appropriate results. If you then find that your code isn't performing as well as you'd like (you used profiling correct?) take a look at: |
|||
|
|
|
double has higher precision, whereas floats take up less memory and are faster. In general you should use float unless you have a case where it isn't accurate enough. |
|||
|
|
The main difference between float and double is precision. Wikipedia has more info about Single precision (float) and Double precision. |
|||
|
|
|
I think regardless of the differences (which as everyone points out, floats take up less space and are in general faster)... does anyone ever suffer performance issues using double? I say use double... and if later on you decide "wow, this is really slow"... find your performance bottleneck (which is probably not the fact you used double). THEN, if it's still too slow for you, see where you can sacrifice some precision and use float. |
|||
|
|
|
It depends highly on the CPU the most obvious trade-offs are between precision and memory. With GBs of RAM, memory is not much of an issue, so it's generally better to use As for performance, it depends highly on the CPU. |
|||
|
|