Ruby注释是程序中的非可执行行。这些行被解释器忽略, 因此它们在执行程序时不会执行。它们由程序员编写, 以解释其代码, 以便其他查看该代码的人可以更好地理解它。
Ruby注释的类型:
- 单行注释
- 多行注释
Ruby单行注释
Ruby单行注释一次只能注释一行。它们用#字符定义。
句法:
#This is single line comment.
例:
i = 10 #Here i is a variable.
puts i
输出
Ruby多行注释用于一次注释多行。它们在行的开头用= begin定义, 在行的末尾用= end定义。
句法:
=begin
This
is
multi line
comment
=end
例:
=begin
we are declaring
a variable i
in this program
=end
i = 10
puts i
输出
评论前必须登录!
注册