0
可能重複:
Understanding Symbols In Ruby
What is the colon operator in Ruby?在Ruby中用冒號作前綴的詞是什麼?
這是一些代碼Rails的教程中,我讀給我。
class Post < ActiveRecord::Base
attr_accessible :content, :name, :title
validates :name, :presence => true
validates :title, :presence => true,
:length => { :minimum => 5 }
end
what:content,:name,and:title是什麼意思?我依稀記得這些來自我正在閱讀的紅寶石教程(hlrb),但是當我瀏覽它時我找不到它們。這些詞以冒號爲前綴是什麼意思?
這些被稱爲[symbols](http://ruby-doc.org/core-1.9.3/Symbol.html),是一種不可變的字符串。 –