I'm wondering what would be the best way to store math constants that are used throughout an entire program?
#define PI 3.14159265
#define SPEEDOFLIGHT 2.99792458e8
or
enum constants { PI = 3.14159265; SPEEDOFLIGHT = 2.99792458e8; }
Thanks
|
feedback
|
|
Do not use
The proper solution is | |||||||||||||
feedback
|
|
None of them, use constant values to preserve compiler's type checking:
EDIT: thanks | |||||||||||||||||||
feedback
|
|
Personally i prefer to just make pi and c = 1 and let the universe deal with the problem | |||||
feedback
|
|
Since enum's are integer constants, I would go with I agree with jdehaan that global | |||||
feedback
|
|
Agree with jdehaan, prefer constants to do more explicit type checking/conversion. In addition, using an enum like you described isn't really the purpose of an enum. Those constants are only mathematically related (if cosmologist hocus-pocus ends up being correct). The purpose of an enum is to combine like values, such as:
| ||||
|
feedback
|