📜  Ruby 中的评论

📅  最后修改于: 2022-05-13 01:55:10.200000             🧑  作者: Mango

Ruby 中的评论

编译器和解释器不执行的语句称为注释。在编码过程中,正确使用注释可以使维护更容易,也更容易发现错误。
在 Ruby 中,有两种类型的注释:

  1. 单行注释。
  2. 多行注释。

在这里,我们将用它们的语法和示例来解释这两种类型的注释:

Ruby 单行注释 –

它由#符号表示。它用于表示 Ruby 中的单行注释。它是最简单的打字评论。当我们在 Ruby 中只需要一行注释时,我们可以在注释前使用字符“#”。
例子 :

Ruby
# Ruby program to show single line comments
 
#!/usr/bin/ruby -w
 
# This is a single line comment.
puts "Single line comment above"


Ruby
# Ruby program to show multi line comments
#!/usr/bin/ruby -w
 
puts "Multi line comments below"
 
=begin
Comment line 1
Comment line 2 
Comment line 3
=end


输出:

Single line comment above

Ruby 多行注释 –

如果我们的注释超过一行,我们可以使用多行注释。在 Ruby 中,多行注释使用=begin 开始,使用=end语法结束。
句法 :

=begin
continues
continues
.
.
.
Comment ends
=end

例子 :

红宝石

# Ruby program to show multi line comments
#!/usr/bin/ruby -w
 
puts "Multi line comments below"
 
=begin
Comment line 1
Comment line 2 
Comment line 3
=end

输出:

Multi line comments below

我们也可以使用上面的语法来执行单行注释,如下所示:

=begin Comment line 1 =end