标签: c++
最好在以下之间使用:
#define PI 3.14159265
和
static const float PI=3.14159265
我知道在编译时使用了define,在执行时使用了static const。只是我不知道使用哪一个以及为什么?