欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

解讀Ruby中注釋的使用方法

 更新時間:2015年05月12日 09:52:54   投稿:goldensun  
這篇文章主要介紹了解讀Ruby中注釋的使用方法,注釋的用法是每門編程語言中最基本的知識點之一,需要的朋友可以參考下

 Ruby行內(nèi)注釋的代碼在運行時被忽略。單行注釋#字符開始,他們從#到行末如下:

#!/usr/bin/ruby -w

# This is a single line comment.

puts "Hello, Ruby!"

上述程序執(zhí)行時,會產(chǎn)生以下結(jié)果:

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

上述程序執(zhí)行時,會產(chǎn)生以下結(jié)果:

Hello, Ruby!

確保后面的注釋是保持足夠的距離的代碼,能使它很容易區(qū)分。如果在一個塊中存在一個以上的尾端注釋它們對齊。例如:

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

相關(guān)文章

最新評論