📄 test.java
字号:
/**
* A test client
*/
public class Test {
public static void main(String[] args) {
int lineCount = 4;
int lineWidth = 12;
Context myContext = new Context();
StrategyA strategyA = new StrategyA();
StrategyB strategyB = new StrategyB();
String s = "This is a test string ! This is a test string ! This is a test string ! This is a test string ! This is a test string ! This is a test string !";
myContext.setText(s);
myContext.setLineWidth(lineWidth);
myContext.setStrategy(strategyA);
myContext.drawText();
myContext.setLineCount(lineCount);
myContext.setStrategy(strategyB);
myContext.drawText();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -