cat.java

来自「《Java程序设计与应用》-张仕斌-源程序 《Java程序设计与应用》-张仕斌」· Java 代码 · 共 26 行

JAVA
26
字号
/*
 * Cat.java
 *
 * Created on 2006年9月16日, 上午11:19
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package example8_5;

/**
 *
 * @author Administrator
 */
public class Cat {
    
    /** Creates a new instance of Cat */
    public Cat() {
    }
 private int catNumber;
	Cat(int i){catNumber=i;}
	void print(){System.out.println("Cat #"+catNumber);}
   
}

⌨️ 快捷键说明

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