×
Ruby 教程Ruby 简介Ruby 环境Ruby 安装 - UnixRuby 安装 - WindowsRuby 命令行选项Ruby 环境变量Ruby 语法Ruby 数据类型Ruby 类和对象Ruby 类案例Ruby 变量Ruby 运算符Ruby 注释Ruby 判断Ruby 循环Ruby 方法Ruby 块Ruby 模块(Module)Ruby 字符串(String)Ruby 数组(Array)Ruby 哈希(Hash)Ruby 日期 & 时间Ruby 范围(Range)Ruby 迭代器Ruby 文件的输入与输出Ruby File 类和方法Ruby Dir 类和方法Ruby 异常

Ruby 高级教程

Ruby 面向对象Ruby 正则表达式Ruby 数据库访问 DBI 教程Ruby CGI 编程Ruby CGI方法Ruby CGI CookiesRuby CGI SessionsRuby 发送邮件 - SMTPRuby Socket 编程Ruby XML, XSLT, XPathRuby Web ServicesRuby 多线程Ruby JSONRuby RubyGems

Ruby 判断


Ruby 提供了其他现代语言中很常见的条件结构。在这里,我们将解释所有的条件语句和 Ruby 中可用的修饰符。

Ruby if...else 语句

语法


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

if 表达式用于条件执行。值 falsenil 为假,其他值都为真。请注意,Ruby 使用 elsif,不是使用 else if 和 elif。

如果 conditional 为真,则执行 code。如果 conditional 不为真,则执行 else 子句中指定的 code

if 表达式的 conditional 通过保留字 then、一个换行符或一个分号,来与代码分离开。

实例


#!/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

如果 conditional 为真,则执行 code

实例


#!/usr/bin/ruby

$debug=1
print "debug " if $debug

这将产生以下结果:


debug

Ruby unless 语句

语法


unless conditional [then]
   code
[else
   code ]
end

如果 conditional 为假,则执行 code。如果 conditional 为真,则执行 else 子句中指定的 code

实例


#!/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 为假,则执行 code

实例


#!/usr/bin/ruby

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

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

这将产生以下结果:


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

Ruby case 语句

语法


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

比较 case 所指定的 expression,当使用 === 运算符指定时,执行匹配的 when 子句的 code

when 子句所指定的 expression 背当作左操作数。如果没有匹配的 when 子句,case 执行 else 子句的代码。

when 语句的表达式通过保留字 then、一个换行符或一个分号,来与代码分离开。

因此:


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

实例


#!/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

分类导航

关注微信下载离线手册

bootwiki移动版 bootwiki
(群号:472910771)