程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 更多關於編程 >> Ruby中注釋的使用方法

Ruby中注釋的使用方法

編輯:更多關於編程

       這篇文章主要介紹了解讀Ruby中注釋的使用方法,注釋的用法是每門編程語言中最基本的知識點之一,需要的朋友可以參考下

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

      ?

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

      上述程序執行時,會產生以下結果:

      ?

    1 Hello, Ruby!

      Ruby的多行注釋

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

      ?

    1 2 3 4 5 6 7 8 #!/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

      上述程序執行時,會產生以下結果:

      ?

    1 Hello, Ruby!

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

      ?

    1 2 @counter # keeps track times page has been hit @siteCounter # keeps track of times all pages have been hit
    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved