2014年6月19日

文件IO流

摘要: 文件IOusing System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.IO;using System.Linq... 阅读全文

posted @ 2014-06-19 15:26 404 NotFound! 阅读(224) 评论(0) 推荐(0) 编辑

2014年6月18日

Path静态类

摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.IO;using System.Linq;usi... 阅读全文

posted @ 2014-06-18 19:46 404 NotFound! 阅读(113) 评论(0) 推荐(0) 编辑

里氏替换原则

摘要: 里氏替换原则:LSP 子类可以替换父类的位置,并且程序的功能不受影响;父类所具有的的功能子类都有,所以程序不受影响;父类变量指向了一个子类对象;1 Person p=new Person();2 Student s=new Student();3 4 //Student :Person5 Perso... 阅读全文

posted @ 2014-06-18 14:17 404 NotFound! 阅读(75) 评论(0) 推荐(0) 编辑

导航