📄 packexam.java
字号:
package myPack; //与Pen类一样,也将PackExam类放在myPack包中
public class PackExam {
public static void main(String args[]) {
Pen p1 = new Pen("Red", 20); //直接使用myPack包中的Pen类
//使用Pen的方法getColor()和getLength()
System.out.println("the color of my Pen is " + p1.getColor());
System.out.println("the length of my Pen is " + p1.getLength());
p1.setColor("Black");
p1.setLength(15);
System.out.println("修改后 ");
System.out.println("the color of my Pen is " + p1.getColor());
System.out.println("the length of my Pen is " + p1.getLength());
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -