为什么这个地方的调用int newScore = mi.getScore();和
// 调用外部类的方法
mo.show();
不一样
geScore 这个方法有个int类型的返回值, int newScore 是用来接收这个返回值的。 直接这么用就一样了:System.out.println(mi.getScore());