跳到内容

Ruby 编程/语法/词法

来自维基教科书,自由的教科书

标识符

[编辑 | 编辑源代码]

标识符是用来标识变量、方法或类的名称。

与大多数语言一样,有效的标识符由字母数字字符(A-Za-z0-9)和下划线(_)组成,但不能以数字开头(0-9)。此外,作为方法名称的标识符可以以问号(?)、感叹号(!)或等号(=).

)结尾。标识符的长度没有任意限制(即它可以根据需要长,只受计算机内存的限制)。最后,有一些保留字不能用作标识符。

示例

foobar
ruby_is_simple

行注释从一个裸的 '#' 字符开始,一直到行尾。代码注释和文档最好使用 Ruby 嵌入式文档实现。 http://www.ruby-doc.org/docs/ProgrammingRuby/html/rdtool.html

示例

# this line does nothing; 
print "Hello" # this line prints "Hello"

嵌入式文档

[编辑 | 编辑源代码]

示例

=begin
Everything between a line beginning with `=begin' down to
one beginning with `=end' will be skipped by the interpreter.
These reserved words must begin in column 1.
=end

保留字

[编辑 | 编辑源代码]

以下单词在 Ruby 中是保留字

__FILE__  and    def       end     in      or      self   unless
__LINE__  begin  defined?  ensure  module  redo    super  until
BEGIN     break  do        false   next    rescue  then   when
END       case   else      for     nil     retry   true   while
alias     class  elsif     if      not     return  undef  yield

你可以在这里找到一些使用它们的示例 这里

表达式

[编辑 | 编辑源代码]

示例

true
(1 + 2) * 3
foo()
if test then okay else not_good end

所有变量、字面量、控制结构等等都是表达式。将它们组合在一起就形成了一个程序。可以用换行符或分号(;)来分隔表达式——但是,带反斜杠(\)的换行符将继续到下一行。

由于在 Ruby 中,控制结构也是表达式,因此可以执行以下操作

 foo = case 1
       when 1
         true
       else
         false
       end

在 C 等语言中,上面的等效代码会生成语法错误,因为在 C 语言中,控制结构不是表达式。

华夏公益教科书