Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这个代码:
sliderPosition.minimumValue = 150.0f; sliderPosition.maximumValue = 450.0f;
它的工作原理好像范围是 150 到 450。所以我不明白“f”是什么
如果你只是这样写,150.0它会被当作double. 如果你这样写,150.0f它会被当作float.
150.0
double
150.0f
float
在您需要告诉编译器您使用的是 float 而不是 double 的情况下,您需要f在数字后面加上 a。
f