until¶
until 在其条件为真值之前执行其主体。until 只是带否定条件的 while 的语法糖。
until some_condition
do_this
end
# The above is the same as:
while !some_condition
do_this
end
break 和 next 也可以在 until 中使用,与 while 表达式一样,break 可以用来从 until 中返回值。
until 在其条件为真值之前执行其主体。until 只是带否定条件的 while 的语法糖。
until some_condition
do_this
end
# The above is the same as:
while !some_condition
do_this
end
break 和 next 也可以在 until 中使用,与 while 表达式一样,break 可以用来从 until 中返回值。