上一页 1 2 3 4 5 6 7 8 9 10 ··· 16 下一页
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 子类与父类的相互转换 { class Program { static void Main(string[] a... Read More
posted @ 2017-09-29 18:51 mCat Views(692) Comments(0) Diggs(0) Edit
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 子类与父类的相互转换 { class Program { static void Main(string[] a... Read More
posted @ 2017-09-29 11:34 mCat Views(6157) Comments(0) Diggs(1) Edit
类决定了应用程序将要拥有的属性和行为 封装: 1. 减少大量冗余代码 2. 将很难的实现细节封装起来,起到保护和方便使用的目的 继承: 1. 减少冗余代码 2. 让类与类产生关系,为多态打下了基础 特性: 单根性:一个子类只有一个父类 传递性:爷爷类、父类、子类 转换: 1. 子类可以赋值给父类 2 Read More
posted @ 2017-09-28 18:55 mCat Views(163) Comments(0) Diggs(0) Edit
使用new,所做的三件事: 1. (类是引用对象,引用对象是在堆中开辟空间)在堆中开辟空间 2. 在开辟的堆空间中创建对象 3. 调用对象的构建函数 4. 隐藏父类成员:子类的成员可以与隐藏从父类继承的成员,类似于重写。public new void SayHello() this关键字的使用 1. Read More
posted @ 2017-09-27 14:57 mCat Views(285) Comments(0) Diggs(0) Edit
using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 进程 { class Program { static vo... Read More
posted @ 2017-09-27 14:01 mCat Views(172) Comments(0) Diggs(0) Edit
Camel:多用于给变量或者字段命名,第一个字母首字母小写,其余每个单词首字母大写。 多用于字段命名 Pascal:要求每个单词的首字母都大写 函数命名:使用动词如,GetMax() Read More
posted @ 2017-09-24 23:01 mCat Views(155) Comments(0) Diggs(0) Edit
XML:可扩展的标记语言,用于存储数据,可认为一个小型数据库 严格区分大小写,标签成对出现 节点:标签 元素:所有内容 XML文档必须有且只有一个根节点 HTML:用于显示数据 VS2013如何显示所有文件:选中项目,点击显示所有文件 Read More
posted @ 2017-09-08 18:45 mCat Views(91) Comments(0) Diggs(0) Edit
1. Frst和FirstOrDefault 1. Fist 如果查询的数据不存在, 则抛System.InvalidOperationException异常 2. FirstOrdefault 如果查询的数据不存在, 则返回 null 2. => lamba 表达式 3. Array.IndexO Read More
posted @ 2017-08-31 18:03 mCat Views(157) Comments(0) Diggs(0) Edit
Socket通信基本流程 由此建立一个server和client相互通信的代码分别为: Server相关: Client相关: Read More
posted @ 2017-08-30 17:03 mCat Views(219) Comments(0) Diggs(0) Edit
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.... Read More
posted @ 2017-08-25 17:02 mCat Views(250) Comments(0) Diggs(0) Edit
上一页 1 2 3 4 5 6 7 8 9 10 ··· 16 下一页