Symbol 是什麼 Ruby 是一個強大的物件導向指令碼語言(本文所用 Ruby 版本為1.8.6),在 Ruby 中 Symbol 表示“名字”,比如字串的名字,標識符的名字。建立一個 Symbol 對象的方法是在名字或者字串前面加上冒號:建立 symbol 對象:foo:test :”abc”:"I am a boy” 你可能會問,字串就是字串,幹嗎還有字串的名字?這是因為在 Ruby 中字串也是一種對象,即 String 對象。無論其結構還是操作和 Symbol 對象都是不同的。
一、Ruby Introduction: Ruby is "an interpreted scripting language for quick and easy object-oriented programming"。 1. Interpreted scripting languageability to make operating system calls directlypowerful string operations and regular
一 判斷結構 if 運算式 elsif 運算式 else endif 運算式 then end #當寫在一行時 需要用then if 運算式 #當運算式的結果為true時執行前面的代碼.. unless 運算式 #當運算式為false執行前面的代碼case 運算式 when 條件1 [,條件2] [then] when 條件3 [,條件4] [then] else end二
From http://biodegradablegeek.com/2008/04/how-to-post-form-data-using-ruby/POSTing data on web forms is essential for writing tools and services that interact with resources already available on the web. You can grab information from your Gmail
http://developer.51cto.com/art/200703/41243.htm介紹這是一個短小的Ruby入門,完全讀完只需20分鐘。這裡假設讀者已經安裝了Ruby,如果你沒有安裝的話,請在閱讀文前訪問Ruby官方網站進行下載並安裝。互動Ruby開啟IRB(互動式Ruby外殼):如果你使用Mac OS
讀取一個檔案,將其列印出來:lines = File.open('dom.js').readlinesputs "======================="lines.each { |line| puts(line)}或者:File.open("dom.js") do |file| while line = file.gets puts line endend後一種能確保檔案用完後被關閉。向目標檔案追加內容:file =