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.
14 lines
377 B
14 lines
377 B
import java.util.List;
|
|
|
|
public class Test {
|
|
public static void main(String[] args) {
|
|
// 接口指向实现类 → 多态
|
|
MovieCrawlerInterface crawler = new MovieCrawler();
|
|
List<Movie> movies = crawler.crawl(5);
|
|
|
|
System.out.println("\n==== 播放电影 ====");
|
|
for (Movie movie : movies) {
|
|
movie.play();
|
|
}
|
|
}
|
|
}
|