Ruby条件判断

Ruby条件判断 首页 / Ruby入门教程 / Ruby条件判断

Ruby提供了现代语言非常常见的条件结构。在这里,无涯教程将解释Ruby中所有可用的条件语句和修饰符。

Ruby if ... else 语句

if conditional [then]
   code...
[elsif conditional [then]
   code...]...
[else
   code...]
end

Ruby if ... else 示例

#!/usr/bin/ruby

x=1
if x > 2
   puts "x is greater than 2"
elsif x <= 2 and x!=0
   puts "x is 1"
else
   puts "I can't guess the number"
end
x is 1

Ruby if 语句

code if condition

如果条件为true,则执行 code 。

Ruby if 示例

#!/usr/bin/ruby

$debug=1
print "debug\n" if $debug

这将产生以下输出-

debug

Ruby unless 语句

unless conditional [then]
   code
[else
   code ]
end

如果 conditional 为false,则执行 code 。如果 conditional 为true,则执行else子句中指定的代码。

Ruby unless 示例

#!/usr/bin/ruby

x=1 
unless x>=2
   puts "x is less than 2"
 else
   puts "x is greater than 2"
end

这将产生以下输出-

x is less than 2

Ruby unless 语句

code unless conditional

如果 conditional 为false,则执行 code 。

无涯教程网

Ruby unless 示例

#!/usr/bin/ruby

$var= 1
print "1-- Value is set\n" if $var
print "2-- Value is set\n" unless $var

$var=false
print "3-- Value is set\n" unless $var

这将产生以下输出-

1 -- Value is set
3 -- Value is set

Ruby case 语句

case expression
[when expression [, expression ...] [then]
   code ]...
[else
   code ]
end

比较case指定的表达式和使用===运算符时指定的表达式,并执行匹配的when子句的 code 。

when子句指定的表达式被判断为左操作数。如果when子句不匹配,则 case 执行 else 子句的代码。

when 语句的表达式与代码之间用保留字,换行符或分号隔开。因此-

case expr0
when expr1, expr2
   stmt1
when expr3, expr4
   stmt2
else
   stmt3
end

基本上类似于以下内容-

_tmp=expr0
if expr1 === _tmp || expr2 === _tmp
   stmt1
elsif expr3 === _tmp || expr4 === _tmp
   stmt2
else
   stmt3
end

Ruby case 示例

#!/usr/bin/ruby

$age= 5
case $age
when 0 .. 2
   puts "baby"
when 3 .. 6
   puts "little child"
when 7 .. 12
   puts "child"
when 13 .. 18
   puts "youth"
else
   puts "adult"
end

这将产生以下输出-

little child

祝学习愉快!(内容编辑有误?请选中要编辑内容 -> 右键 -> 修改 -> 提交!)

教程推荐

给程序员的写作课 -〔高磊〕

手把手带你写一个MiniSpring -〔郭屹〕

云计算的必修小课 -〔吕蕴偲〕

基于人因的用户体验设计课 -〔刘石〕

体验设计案例课 -〔炒炒〕

Java业务开发常见错误100例 -〔朱晔〕

即时消息技术剖析与实战 -〔袁武林〕

Linux实战技能100讲 -〔尹会生〕

Go语言核心36讲 -〔郝林〕

好记忆不如烂笔头。留下您的足迹吧 :)