关于铁路的关键词:<代码>自行,我知道,关键词指的是舱体本身。 例如,在<代码>上,加密——密码。
我不太想到的是,作为右侧的参数而通过的“密码><>/代码>号”与“<代码>本身代码>对应的编号。 关键词也如何?
class User < ActiveRecord::Base
attr_accessor :password
attr_accessible :name, :email, :password, :password_confirmation
validates :password, :presence => true,
:confirmation => true,
:length => { :within => 6..40 }
before_save :encrypt_password
private
def encrypt_password
self.encrypted_password = encrypt(password)
end
def encrypt(string)
string # Only a temporary implementation!
end
end
是否有人解释何时使用或不使用<代码>自封/代码>关键词?