实验目的 1.培养学生综合掌握软件开发过程的能力。 2.培养学生综合运用面向对象设计方法的能力

源代码在线查看: test.java

软件大小: 95 K
上传用户: yuyx2003
关键词: 实验 软件开发 对象 设计方法
下载地址: 免注册下载 普通下载 VIP

相关代码

				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);
						
				
						
					
					}
					
				}			

相关资源