下面是一個簡單的Java代碼示例,用于創建和打印一個矩形:
public class Rectangle {
private int width;
private int height;
public Rectangle(int width, int height) {
this.width = width;
this.height = height;
}
public int getWidth() {
return width;
}
public int getHeight() {
return height;
}
public void printRectangle() {
for (int i = 0; i < height; i++) {
for (int j = 0; j < width; j++) {
System.out.print("* ");
}
System.out.println();
}
}
public static void main(String[] args) {
Rectangle rectangle = new Rectangle(5, 3);
rectangle.printRectangle();
}
}
這個示例定義了一個Rectangle
類,其中包含了矩形的寬度和高度屬性,并提供了獲取寬度和高度的getter方法。printRectangle()
方法用于打印矩形,使用兩個嵌套的循環來繪制矩形的每一行和每一列。
在main()
方法中,創建了一個寬度為5、高度為3的矩形對象,并調用printRectangle()
方法將矩形打印到控制臺上。