编写一个知形类,成员变量包括:长 方法包括:无参构造方法,有参构造方: 方法DisplayCounto count实现计数器功能, 园示她形信恩的成员方法show(,显示count计数路的类
时间: 2023-08-04 16:09:15 浏览: 83
java-静态变量方法块
以下是一个简单的知形类的实现,包括上述要求的成员变量和方法:
```java
public class GeometricShape {
private int count;
// 无参构造方法
public GeometricShape() {
this.count = 0;
}
// 有参构造方法
public GeometricShape(int count) {
this.count = count;
}
// 实现计数器功能
public void DisplayCount() {
this.count++;
}
// 显示count计数路的类
public void show() {
System.out.println("Count: " + this.count);
}
}
```
使用示例:
```java
GeometricShape shape = new GeometricShape();
shape.show(); // Count: 0
shape.DisplayCount();
shape.show(); // Count: 1
shape.DisplayCount();
shape.show(); // Count: 2
```
阅读全文