java有什么面相思想!Java作业 面相抽象原则 在一个列表中,放一个圆形对象,2个矩形对象,和3个三角形对象,并循环输

java面相程序的题目
自己照着敲进去啊 。
Java作业 面相抽象原则 在一个列表中,放一个圆形对象,2个矩形对象,和3个三角形对象,并循环输
【java有什么面相思想!Java作业 面相抽象原则 在一个列表中,放一个圆形对象,2个矩形对象,和3个三角形对象,并循环输】import java.util.*;
public class RecTest {
public static void main(String[] args) {
ArrayList ag=new ArrayList<>();//集合列表!
ag.add(new Cir(5,"圆形1"));
ag.add(new Re(5,8,"矩形1"));
ag.add(new Re(4,10,"矩形2"));
ag.add(new Tr(3,12,"三1"));
ag.add(new Tr(12,5,"三角形2"));
ag.add(new Tr(11,5,"三角形3"));
for(ListIterator lt=ag.listIterator();lt.hasNext();) {
lt.next().area();
}
}
}
abstract class Geometry implements Comparable{
//默认公共属性,宽,高!
protected double width,high;
protected String name;
Geometry(){}
Geometry(double width,double high,String name){
this.width=width;
this.high=high;
this.name=name;
}
protected void area() {
System.out.println(name "面积=" (width*high));
}
public int hashCode() {
return (int)(width);
}
public boolean equals(Object obj) {
if(!(obj instanceof Geometry))
return false;
Geometry o=(Geometry)obj;
return this.width==o.width;
}
public int compareTo(Geometry g) {
return Double.compare(this.width, g.width);
}
}//三角形!
class Tr extends Geometry{
Tr(double width,double high,String name){
super(width,high,name);
}
protected void area() {
System.out.println(name "面积=" (width*high/2));
}
}//矩形!
class Re extends Geometry{
Re(double width,double high,String name){
super(width,high,name);
}
}//圆!
class Cir extends Geometry{
Cir(double radius,String name){
super(radius,0,name);
}
public void area() {
System.out.println(name "面积=" (3.1415926*width*width));
}
}
谁有达内java面相对象飞机大战项目视屏
达内?教什么的
大家学javase用了多久,为什么我自学了一个月才学到面相对象,学完了能找到工作吗?只会se能干嘛
自学的话,估计很难学会的 。不过如果完全学会学懂的话,工作还是很好找的 。