Browse Source

feat:ShapeCalculator

main
Sunchenxi 2 weeks ago
parent
commit
02ed04e4f0
  1. 2
      w4/AI学习报告.txt
  2. BIN
      w4/ShapeCalculator$Circle.class
  3. BIN
      w4/ShapeCalculator$Rectangle.class
  4. BIN
      w4/ShapeCalculator$Shape.class
  5. BIN
      w4/ShapeCalculator$ShapeUtil.class
  6. BIN
      w4/ShapeCalculator$Triangle.class
  7. BIN
      w4/ShapeCalculator.class
  8. 56
      w4/ShapeCalculator.java
  9. BIN
      w4/~$ DOCX 文档.docx
  10. BIN
      w4/屏幕截图 2026-03-29 224240.png
  11. BIN
      w4/类图.jpg
  12. BIN
      w4/组合与继承.docx

2
w4/AI学习报告.txt

@ -0,0 +1,2 @@
利用AI生成并学习代码,在写玩代码后,用AI进行润色。
对与不熟悉的概念AI帮忙解答。

BIN
w4/ShapeCalculator$Circle.class

Binary file not shown.

BIN
w4/ShapeCalculator$Rectangle.class

Binary file not shown.

BIN
w4/ShapeCalculator$Shape.class

Binary file not shown.

BIN
w4/ShapeCalculator$ShapeUtil.class

Binary file not shown.

BIN
w4/ShapeCalculator$Triangle.class

Binary file not shown.

BIN
w4/ShapeCalculator.class

Binary file not shown.

56
w4/ShapeCalculator.java

@ -0,0 +1,56 @@
package w5;
public class ShapeCalculator {
abstract class Shape {
public abstract double getArea();
}
class Circle extends Shape {
private double radius;
public Circle(double radius) {
this.radius = radius;
}
@Override
public double getArea() {
return Math.PI * radius * radius;
}
}
class Rectangle extends Shape {
private double width;
private double height;
public Rectangle(double width, double height) {
this.width = width;
this.height = height;
}
@Override
public double getArea() {
return width * height;
}
}
class Triangle extends Shape {
private double base;
private double height;
public Triangle(double base, double height) {
this.base = base;
this.height = height;
}
@Override
public double getArea() {
return 0.5 * base * height;
}
}
class ShapeUtil {
public static void printArea(Shape shape) {
System.out.println("图形面积为:" + shape.getArea());
}
}
public static void main(String[] args) {
ShapeCalculator calculator = new ShapeCalculator();
Shape circle = calculator.new Circle(5);
Shape rectangle = calculator.new Rectangle(4,6);
Shape triangle = calculator.new Triangle(3,8);
System.out.println("====== 图形面积计算器 ======");
ShapeUtil.printArea(circle);
ShapeUtil.printArea(rectangle);
ShapeUtil.printArea(triangle);
}
}

BIN
w4/~$ DOCX 文档.docx

Binary file not shown.

BIN
w4/屏幕截图 2026-03-29 224240.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

BIN
w4/类图.jpg

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

BIN
w4/组合与继承.docx

Binary file not shown.
Loading…
Cancel
Save