📄 robcompany.java
字号:
package com.sp.rob;
public class RobCompany {
private static String father = "父亲杰克逊";
private static String sun = "儿子小杰克逊";
public static Person getFater()
{
System.out.println("打劫公司打算派"+father+"去执行任务");
return new Father(father);
}
public static Person getSun()
{
System.out.println("打劫公司打算派"+sun+"去执行任务");
return new Sun(sun);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -