book.java
来自「java源程序 对初学者有很大的帮助 从简单到复杂」· Java 代码 · 共 20 行
JAVA
20 行
//********************************************************************
// Book.java Author: Lewis/Loftus
//
// Represents a book. Used as the parent of a derived class to
// demonstrate inheritance.
//********************************************************************
public class Book
{
protected int pages = 1500;
//----------------------------------------------------------------
// Prints a message about the pages of this book.
//----------------------------------------------------------------
public void pageMessage ()
{
System.out.println ("Number of pages: " + pages);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?