您的代码甚至不是有效的Java,您正在混合类和方法语义(并且很可能是它们背后的概念).
您的类需要一个main方法,以便从外部使您的类可执行.
public class Main { Wolf myWolf = new Wolf(); Parrot myParrot = new Parrot(); Rhino myRhino = new Rhino(); public static void main(String[] args) { myWolf.makeNoise(); myParrot.makeNoise(); myRhino.makeNoise(); } }