rectangle.java

来自「《Java与模式》一书的源代码」· Java 代码 · 共 28 行

JAVA
28
字号
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 + -
显示快捷键?