解读Ruby中注释的使用方法

时间:2021-05-22

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

#!/usr/bin/ruby -w# This is a single line comment.puts "Hello, Ruby!"

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

Hello, Ruby!

Ruby的多行注释

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

#!/usr/bin/ruby -wputs "Hello, Ruby!"=beginThis is a multiline comment and con spwan as many lines as youlike. 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

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章