我很難初始化參數B < A 我不斷收到錯誤的參數。我需要什麼來初始化參數?父母在ruby參數錯誤
class Checking < Account
def initialize
super
end
def balance
@balance = principal * (1 + interest_rate/365) ** 365
end
end
class Interest_rate
def interest_rate
@@interest_rate = 0.003
end
end
什麼是「Account」? – Li357
看到你的班級「Account」會很有幫助。在您的編輯中,請更具體地說明您提到的錯誤。錯誤信息是什麼,在什麼情況下引發異常? –
@AndrewLi我更新了賬戶 –