Rubyで注文システムを作成したいと考えています。
作成したClassとしてProduct, Book, CD, ShoppingCartがあり、BookとFoodはProductを継承するように記述しました。
購入する商品(Book, CD)をShoppingCartへ入れて結果を出力するようにしたいのですが、ShoppingCart Classへの記述がわからない状況です。
【試したこと】
・total_priceメソッドを作成して価格と数から合計金額を出力する処理を記述
・本とCDを追加するadd_productメソッドを作成
【作成したコード】
class Product attr_accessor :name, :price def initialize(name, price) @name = name @price = price end end class Book < Product # 編集 attr_accessor :author, :publisher, :page_count def initialize(name, price) self.author = author self.publisher = publisher self.page_count = page_count end def info return "#{self.name} #{self.price}円", "#{self.author}", "#{self.publisher}", "#{self.page_count}" end end class CD < Product # 編集 attr_accessor :artist, :year, :songs def initialize(name, price) self.artist = artist self.year = year self.songs = songs end def info return "#{self.name} #{self.price}円", "#{self.artist}", "#{self.year}", "#{self.song}" end end class ShoppingCart # 編集 attr_accessor :name, :price def add_product end def total_price total_price = self.price * count end end book1 = Book.new('吾輩は猫である', 500) book1.author = '夏目漱石' book1.publisher = 'Vitalize出版' book1.page_count = 400 cd1 = CD.new('SMAP', 1200) cd1.artist = 'スマップ' cd1.year = 2018 cd1.songs = ["青い稲妻", "世界に一つだけの花", "オレンジ"] cart = ShoppingCart.new cart.add_product(book1) cart.add_product(cd1) puts "買い物かごに入っている商品は全部で #{cart.count} 個です" puts "金額は合計 #{cart.total_price} 円です"
【出力させたい結果】
買い物かごに入っている商品は全部で 2 個です 金額は合計 1700 円です
初心者質問で申し訳ないのですが、よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/01/26 06:34