类和对象试题
Posted 之墨_
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了类和对象试题相关的知识,希望对你有一定的参考价值。
类和对象
public class Square {
public static void main(String[] args) {
double S1 = new Circle(2).area();
double S2 = new Rectangle(3.0,4.0).area();
System.out.println(S1+"---"+S2);
}
static abstract class Shape{
double x,y;
public abstract double area();
}
static class Circle extends Shape{
public Circle(double x){
this.x = x;
}
@Override
public double area() {
return x*x*Math.PI;
}
}
static class Rectangle extends Shape{
public Rectangle(double x, double y){
this.x = x;
this.y = y;
}
@Override
public double area() {
return x*y;
}
}
}
以上是关于类和对象试题的主要内容,如果未能解决你的问题,请参考以下文章
片段(Java) | 机试题+算法思路+考点+代码解析 2023