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.
GIF 或电影插件定义了FramesPerSecond类型的属性
int[2] (rational)
这意味着什么?我想出的一种可能的解释是数组中的第二项包含小数部分。是这样吗?如果是,为什么不直接使用 afloat呢?
float
“有理”意味着它是一个分数。浮点值将是(大约)float(value[0])/float(value[1])。
float(value[0])/float(value[1])
我说“大约”的原因,以及它不是浮点数的原因,是因为浮点数不能准确地表示许多有用的分数。