rectangle.java

来自「《JAVA与模式》附书中源代码」· Java 代码 · 共 25 行

JAVA
25
字号
package com.javapatterns.liskov.version1;

public class Rectangle
{
    private long width;
    private long height;
    
    public void setWidth(long width)
    {
        this.width = width;
    }
    public long getWidth()
    {
        return this.width;
    }
    public void setHeight(long height)
    {
        this.height = height;
    }
    public long getHeight()
    {
        return this.height;
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?