package cn.edu.bjut.chapter4_1; public abstract class Shape { public abstract double area(); public abstract double perimeter(); }