package com.yyt.moviecrawler.model; public class AnimatedMovie extends Movie { public AnimatedMovie(String title, double score, String author) { super(title, score, "动画电影", author); } @Override public void printInfo() { System.out.println("动画电影:《" + getTitle() + "》 | 评分:" + getScore()); } }