📄 book.java
字号:
package com.wrox.shop;/** * Models a Book offered by the publisher. */public class Book { private String title; private double price; /** * Constructs a new Book * @param title The book's title. * @param price The book's retail price. */ public Book(String title, double price) { super(); this.title = title; this.price = price; } /** * Retrieves the title * @return The title. */ public String getTitle() { return this.title; } /** * Retrieves the retail price. * @return The retail price. */ public double getPrice() { return this.price; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -