ruby nil
true
, false
, and nil
are special built-in data types in Ruby. Each of these keywords evaluates to an object that is the sole instance of its respective class.
true
, false
和nil
是Ruby中的特殊内置数据类型。 这些关键字中的每一个都求值为一个对象,该对象是其各自类的唯一实例。
true.class=> TrueClass
false.class=> FalseClass
nil.class=> NilClass
true
and false
are Ruby’s native boolean values. A boolean value is a value that can only be one of two possible values: true or not true. The object true
represents truth, while false
represents the opposite. You can assign variables to true
/ false
, pass them to methods, and generally use them as you would other objects (such as numbers, Strings, Arrays, Hashes).
true
和false
是Ruby的本地布尔值。 布尔值是只能是两个可能值之一的值:true或not true。 对象true
代表真相,而false
代表相反。 您可以将变量分配给true
/ false
,将它们传递给方法,并通常像使用其他对象(例如数字,字符串,数组,哈希)一样使用它们。
nil
is a special value that indicates the absence of a value – it is Ruby’s way of referring to “nothing”. An example of when you will encounter the nil
object is when you ask for something that doesn’t exist or cannot be found:
nil
是一个特殊的值,它指示不存在值–这是Ruby引用“ nothing”的方式。 当您遇到不存在或找不到的东西时,便是遇到nil
对象的一个示例:
hats = ["beret", "sombrero", "beanie", "fez", "flatcap"]hats[0]=> "beret" # the hat at index 0
hats[2]=> "beanie" # the hat at index 2
hats[4]=> "flatcap" # the hat at index 4
hats[5]=> nil # there is no hat at index 5, index 5 holds nothing (nil)
Zero is not nothing (it’s a number, which is something). Likewise, empty strings, arrays, and hashes are not nothing (they are objects, which happen to be empty). You can call the method nil?
to check whether an object is nil.
零不是什么(它是一个数字,是个数字)。 同样,空字符串,数组和哈希也不是什么(它们是对象,碰巧是空的)。 您可以调用方法nil?
检查对象是否为零。
0.nil?=> false
"".nil?=> false
[].nil?=> false
{}.nil?=> false
nil.nil?=> true# from the example above
hats[5].nil?=> true
Every object in Ruby has a boolean value, meaning it is considered either true or false in a boolean context. Those considered true in this context are “truthy” and those considered false are “falsey.” In Ruby, only false
and nil
are “falsey,” everything else is “truthy.”
Ruby中的每个对象都有一个布尔值,这意味着在布尔上下文中它被视为true或false。 在这种情况下,被认为是正确的是“真实的”,被认为是错误的是“假的”。 在Ruby中, 只有 false
和nil
是“ falsey”,其他所有东西都是“ true”。
更多信息: (More Information:)
Learning Ruby: From Zero to Hero
学习Ruby:从零到英雄
Idiomatic Ruby: writing beautiful code
惯用的Ruby:编写漂亮的代码
How to Export a Database Table to CSV Using a Simple Ruby Script
如何使用简单的Ruby脚本将数据库表导出为CSV
翻译自: https://www.freecodecamp.org/news/data-types-in-ruby-true-false-and-nil-explained-with-examples/
ruby nil