package Shape; public class Rectangle extends Shape { @Override public void draw(){ System.out.println("打印一个矩形"); } }