如何用 Ruby 表达无穷大?
Ruby 中有表达 Infinity 的关键字吗?
Is there a keyword to express Infinity in Ruby?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
Ruby 中有表达 Infinity 的关键字吗?
Is there a keyword to express Infinity in Ruby?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
如果您使用 ruby 1.9.2,则可以使用:
或者您可以使用以下命令创建自己的常量*:
我检查过,在 Ruby 1.8.6、1.8.7 和 1.9.2 中,您有 Float.infinite?。
*我已经在 Ruby 1.8.6 和 1.9.2 中验证了这一点
If you use ruby 1.9.2, you can use:
Or you can create your own constant using the following*:
I've checked that in Ruby 1.8.6, 1.8.7, and 1.9.2 you have Float.infinite?.
*I've verified this in Ruby 1.8.6 and 1.9.2
没有关键字,但 1.9.2 有一个常量:
No keyword, but 1.9.2 has a constant for this:
考虑 ruby 文档中的 BigDecimal
Consider BigDecimal in the ruby docs