📄 c.java.txt
字号:
import java.awt.*;
class C
{
public synchronized void saText(String msg ,TextArea f1,TextArea f)
{
f1.append(msg+"\n\n");
f.append(msg+"\n\n");
try
{
this.notify();
this.wait();
}
catch (Exception e){}
}
public synchronized void sbText(String msg ,TextArea f,TextArea f1)
{
f.append(msg+"\n\n");
f1.append(msg+"\n\n");
try{
this.notify();
this.wait();
}
catch (Exception e){}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -