实验目的
1.培养学生综合掌握软件开发过程的能力。
2.培养学生综合运用面向对象设计方法的能力
源代码在线查看: test.java
import java.io.*;
public class test
{
public static void main (String args[]) throws IOException
{
String s=new String();
File outfile=new File("23.txt");
myDictionary adic =new myDictionary();
myText atext = new myText();
Checker achack =new Checker();
output aout=new output();
File afile=new File("Dictionary.txt");
adic.OpenDictionary(afile);
File file2=new File("11.txt");
s=atext.OpenText(file2);
achack.check(adic,s);//最后是这里出错了,只要在取下一个就行了
aout.outprint(achack.checkLine,outfile);
}
}