Ruby中的else if else

时间:2016-09-02 03:32:08

标签: arrays ruby if-statement each

这里的Ruby新手。我试图在数组中放入一个if else语句,如果某个模数== 0,发送一个字符串,在我的生活中,我无法在任何地方找到它。我相信有人会发现它非常简单。

a = *(1..100)
a.each { |i| puts "three" if i % 3 == 0 elsif puts "five" if i % 5 == 0 else puts i}

只是不确定正确的语法。仍然是ruby的新手,我正在尝试学习语法。上学期上了C课,我的大脑一直想要用C语法。

当我离开时

a = *(1..100)
a.each { |i| puts "three" if i % 3 == 0}

它工作正常,只是想弄清楚如何添加if else。感谢帮助。

以下答案非常有用。我试图进一步将其称为函数。它会一直返回5,而不是" 5"或3,而不是" 3"。

这是我的功能:

def array_mod
a = *(1..100)
a.each { |i| if i % 3 == 0  && i % 5 == 0; i = "fifteen" elsif i % 3 == 0; i = "three" elsif i % 5 == 0; i = "five" else i = i end }

这是我试图调用它。

require "minitest/autorun"
require_relative "array_modulus.rb"



class TestArrayFunction < Minitest::Test


def test_array1

    results = array_mod

    assert_equal(100, results.length)
end

def test_array2

    results = array_mod
    assert_equal("three", results[2])
end


end

我被告知它没有更新我的阵列。再次感谢。

5 个答案:

答案 0 :(得分:5)

Ruby中条件表达式的语法是:

if c_1 then e_1 elsif c_2 then e_2 elsif c_3 then e_3 … elsif c_n then e_n else e_nplus1 end

其中c_1 ... c_ne_1 ... e_nplus1可以是任意Ruby表达式。

可以使用表达式分隔符(即;或换行符)代替then关键字来分隔条件表达式的各个部分。

用分号(这种用法是非惯用的):

if c_1; e_1 elsif c_2; e_2 elsif c_3; e_3 … elsif c_n; e_n else e_nplus1 end

使用换行符:

if c_1
  e_1
elsif c_2
  e_2
elsif c_3
  e_3
# …
elsif c_n
  e_n
else
  e_nplus1
end

如果您使用换行符,您也可以选择使用then关键字,但这也是非惯用的:

if c_1
then e_1
elsif c_2
then e_2
elsif c_3
then e_3
# …
elsif c_n
then e_n
else
  e_nplus1
end

因此,在您的情况下,正确的语法是:

# idiomatic
a.each { |i| if i % 3 == 0 then puts "three" elsif i % 5 == 0 then puts "five" else puts i end }

# non-idiomatic
a.each { |i| if i % 3 == 0; puts "three" elsif i % 5 == 0; puts "five" else puts i end }

# idiomatic
a.each { |i|
  if i % 3 == 0
    puts "three"
  elsif i % 5 == 0
    puts "five"
  else
    puts i
  end
}

# non-idiomatic
a.each { |i|
  if i % 3 == 0
  then puts "three"
  elsif i % 5 == 0
  then puts "five"
  else
    puts i
  end
}

但是,对于if / elsif这样的链,使用case表达式通常更为惯用:

# idiomatic
case when c_1 then e_1 when c_2 then e_2 when c_3 then e_3 … when c_n then e_n else e_nplus1 end

# non-idiomatic
case when c_1; e_1 when c_2; e_2 when c_3; e_3 … when c_n; e_n else e_nplus1 end

# idiomatic
case
when c_1
  e_1
when c_2
  e_2
when c_3
  e_3
# …
when c_n
  e_n
else
  e_nplus1
end

# non-idiomatic
case
when c_1
then e_1
when c_2
then e_2
when c_3
then e_3
# …
when c_n
then e_n
else
  e_nplus1
end

在您的情况下,这将是这样的:

# idiomatic
a.each { |i| case when i % 3 == 0 then puts "three" when i % 5 == 0 then puts "five" else puts i end }

# non-idiomatic
a.each { |i| case when i % 3 == 0; puts "three" when i % 5 == 0; puts "five" else puts i end }

# idiomatic
a.each { |i|
  case
  when i % 3 == 0
    puts "three"
  when i % 5 == 0
    puts "five"
  else
    puts i
  end
}

# non-idiomatic
a.each { |i|
  case
  when i % 3 == 0
  then puts "three"
  when i % 5 == 0
  then puts "five"
  else
    puts i
  end
}

请注意,条件表达式(ifcase)都是表达式,而不是语句。 Ruby中没有语句,一切都是表达式,一切都评估为一个值。条件表达式求值为分支中表达式的值。

所以,你也可以这样写:

# idiomatic
a.each { |i| puts(if i % 3 == 0 then "three" elsif i % 5 == 0 then "five" else i end) }

# non-idiomatic
a.each { |i| puts(if i % 3 == 0; "three" elsif i % 5 == 0; "five" else i end) }

# idiomatic
a.each { |i|
  puts(if i % 3 == 0
    "three"
  elsif i % 5 == 0
    "five"
  else
    i
  end)
}

# non-idiomatic
a.each { |i|
  puts(if i % 3 == 0
  then "three"
  elsif i % 5 == 0
  then "five"
  else
    i
  end)
}

# idiomatic
a.each { |i| puts(case when i % 3 == 0 then "three" when i % 5 == 0 then "five" else i end) }

# non-idiomatic
a.each { |i| puts(case when i % 3 == 0; "three" when i % 5 == 0; "five" else i end) }

# idiomatic
a.each { |i|
  puts(case
  when i % 3 == 0
    "three"
  when i % 5 == 0
    "five"
  else
    i
  end)
}

# non-idiomatic
a.each { |i|
  puts(case
  when i % 3 == 0
  then "three"
  when i % 5 == 0
  then "five"
  else
    i
  end)
}

答案 1 :(得分:2)

可以使用.encode('latin-1')来限定单个语句,但是一旦进入if区域,就必须像正常一样将其分解C风格elsif/else声明:

if

答案 2 :(得分:2)

这是语法。

a.each do |i|
  if i % 3 == 0 
    puts "three" 
  elsif i % 5 == 0
    puts "five" 
  else
    puts i
  end
end

请注意,a = *(1..100) a.each do |i| if i % 3 == 0 puts "three" elsif i % 5 == 0 puts "five" else puts i end end 将返回each,但不会返回确切的值。您需要使用Enumerator关键字来返回值。 这是docs

答案 3 :(得分:1)

请查看以下代码是否有帮助

/

=&GT; :abc

2.3.0:013&gt; ABC

这将以irb模式提供所需的输出。

答案 4 :(得分:1)

或者,如果你想强调一下,总是有一个puts而且输出值只会改变:

puts(
  if i%3==0
    'three'
  elsif i%5==0
    'five'
  else
    i
  end
)