public class XiaohongshuMovie extends Movie { private String author; public XiaohongshuMovie(String title, int year, double rating, String genre, String author) { super(title, year, rating, genre); this.author = author; } @Override public void play() { System.out.println("小红书笔记:" + getTitle() + ",作者:" + author); } }