实验1 汉字输入练习
程序模板 请按模板要求,将【代码】替换为Java程序代码。
TypeChinese.java
public class TypeChinese {
public static void main(String args[]) {
System.out.println("输入汉字练习(输入#结束程序)");
System.out.printf("输入显示的汉字(回车)\n");
Chinese hanzi;
hanzi = new Chinese();
GiveChineseThread giveHanzi;
InputChineseThread typeHanzi;
giveHanzi = new GiveChineseThread(); //创建线程giveHanzi
giveHanzi.setChinese(hanzi);
giveHanzi.setSleepLength(6000);
typeHanzi = new InputChineseThread(); //创建线程typeHanzi
typeHanzi.setChinese(hanzi)