加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

解读Ruby中注释的使用方法

发布时间:2020-12-16 23:36:32 所属栏目:百科 来源:网络整理
导读:Ruby行内注释的代码在运行时被忽略。单行注释#字符开始,他们从#到行末如下: #!/usr/bin/ruby -w# This is a single line comment.puts "Hello,Ruby!" 上述程序执行时,会产生以下结果: Hello,Ruby! Ruby的多行注释 可以注释掉多行使用 =begin 和 =end

 Ruby行内注释的代码在运行时被忽略。单行注释#字符开始,他们从#到行末如下:

#!/usr/bin/ruby -w

# This is a single line comment.

puts "Hello,Ruby!"

上述程序执行时,会产生以下结果:

Hello,Ruby!

Ruby的多行注释

可以注释掉多行使用 =begin 和 =end 语法如下:

#!/usr/bin/ruby -w

puts "Hello,Ruby!"

=begin
This is a multiline comment and con spwan as many lines as you
like. But =begin and =end should come in the first line only. 
=end

上述程序执行时,会产生以下结果:

Hello,Ruby!

确保后面的注释是保持足够的距离的代码,能使它很容易区分。如果在一个块中存在一个以上的尾端注释它们对齐。例如:

@counter   # keeps track times page has been hit
@siteCounter # keeps track of times all pages have been hit

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读