摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; namespace @abstract{ class Program { s 阅读全文
posted @ 2019-04-10 20:30 木秀秀秀于林 阅读(334) 评论(0) 推荐(0) 编辑
摘要: 简单的总结一下form表单提交的几种方式:1.最简单的方式 就用form的submit提交方式,这种提交方式是不需要回调函数的 这种方式最近到一个form提供action路径后台接受就可以<1form action="uploadify/getJsonText.do" method="post" i 阅读全文
posted @ 2019-04-10 19:29 木秀秀秀于林 阅读(2699) 评论(0) 推荐(0) 编辑
摘要: 接口(interface)与抽象类(abstract)的区别: 相同点: 1.都不能被直接实例化,都可以通过继承实现其抽象方法。 2.都是面向抽象编程的技术基础,实现诸多模式 不同点: 1.接口可以多继承,抽象类不能实现多继承。 2.接口只能定义抽象规则,抽象类既能定义抽象规则也能提供已实现的成员 阅读全文
posted @ 2019-04-10 19:20 木秀秀秀于林 阅读(844) 评论(0) 推荐(0) 编辑