You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
275 B

public class Test {
public static void main(String[] args) {
Movie m1 = new TheatreMovie("流浪地球", 2023, 9.0, "科幻", 58.0);
Movie m2 = new AnimatedMovie("哪吒", 2019, 9.5, "动画", "可可豆");
m1.play();
m2.play();
}
}