什么时候Ruby中需要do关键字?

前端之家收集整理的这篇文章主要介绍了什么时候Ruby中需要do关键字?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
例如,以下代码中是否存在do会影响程序的行为吗?
while true do
    puts "Hi"
    break
end

while true
    puts "Hi"
    break
end

解决方法

根据 The Ruby Programming Language书第5.2.1节:

The do keyword in a while or until loop is like the then keyword in an
if statement: it may be omitted altogether as long as a newline (or
semicolon) appears between the loop condition and the loop body.

所以,不,它不会改变行为,它只是可选语法.

原文链接:https://www.f2er.com/ruby/268459.html

猜你在找的Ruby相关文章