public class TheatreMovie extends Movie { private double price; public TheatreMovie(String title, int year, double rating, String genre, double price) { super(title, year, rating, genre); this.price = price; } @Override public void play() { System.out.println("院线电影播放:" + getTitle() + ",票价:" + price); } }