?? concretefont.java
字號:
/**
* A shared ConcreteFlyweight
*/
import java.io.*;
public class ConcreteFont implements Font {
private String color;
private int size;
private String str;
public ConcreteFont(String s) {
str = s;
//id = "The char is: " + s;
}
public void SetFont(String _color, int _size) {
color = _color;
size = _size;
}
public void GetFont() {
System.out.println("String :" + str + "--- color is:" + color + "--- size is:" + size);
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -