03 2013 档案
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;/* * 多态性:使你能够在类层次结构中多次定义一个方法,这个运行时环境可以调用合适于特定对象的方法版本。 *解决办法:晚绑定,以为着编译器到运行时才选择要执行的方法,为了迫使编译器调用向上类型转换得到的对象的方法的正确版本 *必须使用两个关键字:virtual和override关键字。必须在基类方法中使用virtual关键字,在方法的派生类实现中使用override关键字 */namespace TestDemo2{ pub...
阅读全文
摘要:在wpf中实现滚轮事件时,面中显示数据(从0开始,没滚动加1)后台代码如下:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Windows;using System.Windows.Controls;using System.Windows.Data;using System.Windows.Documents;using System.Windows.Input;using System.Windows.Media;using System.Windo
阅读全文
摘要:以后补充(1)详细了解Tcp/Ip协议参考下面链接http://blog.csdn.net/goodboy1881/article/category/204448TCP:Transmission Control Protocol 传输控制协议,是一种面向连接(连接导向)的、可靠的、基于字节流的运输层(Transport layer)通信协议UDP:(User Datagram Protocol)用户数据报协议,是一种无连接的传输层协议,提供面向事务的简单不可靠信息传送服务ARP:(Address Resolution Protocol)地址解析协议,将IP地址转换为MAC地址(物理地址)ICM
阅读全文