首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > Ruby Rails >

娃子鸭学Ruby-1、注释

2012-12-23 
娃娃鸭学Ruby-1、注释1、注释注释以#字符开头并持续到该行结束如果#字符出现在一个字符串或正则表达式字面量

娃娃鸭学Ruby-1、注释
1、注释
注释以#字符开头并持续到该行结束
如果#字符出现在一个字符串或正则表达式字面量里,那么它将作为此字符串或正则表达式的一部分而非引入一段注释。
# This entire line is a comment
x="#This is a string"
y=/#This is a regular expression/
以上两个不是注释

2、嵌入式文档
多行注释风格。
以一个“=begin"开头,并以一个"=end"结尾("=end"所在的那一行也包括在内).

=begin 必须做为第一个开头

=begin Someone needs to fix the brokencode below!
  Any code here is commented out
=end

#=begin Someone needs to fix the brokencode below!
  The code that goes here is no longer commented out
#=end
以上不为注释。
2011-3-28 21:06

热点排行