摘要: 学习内容 1.多边形继承 1 //父类: 2 public class CPolygon { 3 protected int width,height; 4 public void setValues(int a,int b) 5 { 6 width=a; 7 height=b; 8 } 9 } 1 阅读全文
posted @ 2020-08-17 11:36 第厘 阅读(58) 评论(0) 推荐(0) 编辑