class Program
{
static void Main(string[] args)
{
Contact contact = new Contact();
PdaItem pda = new PdaItem();
pda = contact;
}
}
public class PdaItem
{
public string Name { set; get; }
public DateTime LastUpdated { set; get; }
}
public class Contact : PdaItem
{
public string Address { set; get; }
public string Phone { set; get; }
}
class Program
{
static void Main(string[] args)
{
PdaItem pda = new PdaItem("name1", DateTime.Now);
Contact contact = new Contact("name2", DateTime.Now.AddDays(), "beijing", "");
pda = contact;
Person person = new Person("PersonName1", "tianjin");
contact = person;
}
}
public class PdaItem
{
public PdaItem()
{
}
public PdaItem(string pName, DateTime pLastUpdated)
{
Name = pName;
LastUpdated = pLastUpdated;
}
public string Name { set; get; }
public DateTime LastUpdated { set; get; }
}
public class Contact : PdaItem
{
public Contact()
{
}
public Contact(string pName, DateTime pLastUpdated, string pAddress, string pPhone)
: base(pName, pLastUpdated)
{
Address = pAddress;
Phone = pPhone;
}
public string Address { set; get; }
public string Phone { set; get; }
}
public class Person
{
public Person(string pName, string pAddress)
{
Name = pName;
Address = pAddress;
}
public string Name { set; get; }
public string Address { set; get; }
/// <summary>
/// 隐式转换
/// </summary>
/// <param name="person"></param>
/// <returns></returns>
public static implicit operator Contact(Person person)
{
Contact c = new Contact();
c.Name = person.Name;
c.Address = person.Address;
c.LastUpdated = DateTime.Today;
c.Phone = "";
return c;
}
}
class Program
{
static void Main(string[] args)
{
Contact p = new Contact("xxm", DateTime.Now, );
Console.WriteLine(p.GetSex());
Console.ReadLine(); }
}
public class PdaItem
{
public PdaItem()
{
}
public PdaItem(string pName, DateTime pLastUpdated)
{
Name = pName;
LastUpdated = pLastUpdated;
}
public string Name { set; get; }
public DateTime LastUpdated { set; get; }
}
public class Person
{
public Person(int pSex)
{
Sex = pSex;
}
public int Sex { set; get; }
public string GetSex()
{
switch (Sex)
{
case :
return "女";
case :
return "男";
default:
return "未定义";
}
} }
public class Contact : PdaItem
{
public Contact()
{
}
public Contact(string pName, DateTime pLastUpdated, int sex)
: base(pName, pLastUpdated)
{
person = new Person(sex);
}
public Person person { set; get; }
public int Sex
{
set { person.Sex = value; }
get { return person.Sex; }
}
public string GetSex()
{
switch (Sex)
{
case :
return Name + "," + "女" + "," + LastUpdated;
case :
return Name + "," + "男" + "," + LastUpdated; ;
default:
return Name + "," + "未定义" + "," + LastUpdated; ;
}
}
}
class Program
{
static void Main(string[] args)
{
PdaItem p = new PdaItem("pname", DateTime.Now.AddDays(-));
Contact c = new Contact("name1", DateTime.Now);
p = c;
p.Name = "name1";
Console.WriteLine(p.Name); }
}
public class PdaItem
{
public PdaItem()
{
}
public PdaItem(string pName, DateTime pLastUpdated)
{
Name = pName;
LastUpdated = pLastUpdated;
}
public virtual string Name { set; get; } public DateTime LastUpdated { set; get; }
} public class Contact : PdaItem
{
public override string Name
{
get
{
return FirtstName;
}
set
{
FirtstName = value + " from Contact";
}
}
public string FirtstName;
public Contact()
{
}
public Contact(string pName, DateTime pLastUpdated)
: base(pName, pLastUpdated)
{ } }
class Program
{
static void Main(string[] args)
{
PdaItem p = new PdaItem("pname", DateTime.Now.AddDays(-));
Contact c = new Contact("name1", DateTime.Now);
p = c;
p.Name = "name1";
Console.WriteLine(p.Name); }
}
public class PdaItem
{
public PdaItem()
{
}
public PdaItem(string pName, DateTime pLastUpdated)
{
Name = pName;
LastUpdated = pLastUpdated;
}
public string Name { set; get; } public DateTime LastUpdated { set; get; }
} public class Contact : PdaItem
{
public new string Name
{
get
{
return FirtstName;
}
set
{
FirtstName = value + " from Contact";
}
}
public string FirtstName;
public Contact()
{
}
public Contact(string pName, DateTime pLastUpdated)
: base(pName, pLastUpdated)
{ } }
class Program
{
static void Main(string[] args)
{
PdaItem p;
Contact c = new Contact("contact name");
p = c;
Console.WriteLine(p.Name +","+ p.GetSummary()); Appointment ap = new Appointment("appointment name");
p = ap;
Console.WriteLine(p.Name + "," + p.GetSummary());
Console.ReadLine(); }
}
public abstract class PdaItem
{
public PdaItem()
{ }
public PdaItem(string pName)
{
Name = pName;
}
public virtual string Name { set; get; }
public abstract string GetSummary();
} public class Contact : PdaItem
{
public new string Name
{
get
{
return FirtstName;
}
set
{
FirtstName = value + " from Contact";
}
}
public string FirtstName;
public Contact()
{
}
public Contact(string pName)
: base(pName)
{ }
public override string GetSummary()
{
return "GetSummary() from Contact";
} }
public class Appointment : PdaItem
{
public new string Name
{
get
{
return FirtstName;
}
set
{
FirtstName = value + " from Appointment";
}
}
public string FirtstName;
public Appointment()
{
}
public Appointment(string pName)
: base(pName)
{ }
public override string GetSummary()
{
return "GetSummary() from Appointment";
} }
六、C# 派生的更多相关文章
-
androd输入管理系统机制解析
android的输入管理系统主要完成按键.触摸板.鼠标等输入设备的事件输入,功能包括,输入设备的事件输入及向焦点窗口和焦点视图的事件派发,事件的插入,事件的过滤,事件的拦截等功能. 整个输入系统 ...
-
Core官方DI解析(3)-ServiceCallSite.md
上一篇说过在整个DI框架中IServiceProviderEngine是核心,但是如果直接看IServiceProviderEngine派生类其实看不出也没什么东西,因为这个类型其实都是调用的其它对象 ...
-
C++进阶笔记
思想原则: 以类为例,类最终要处理的是数据,方法只是过程,最终要改变的是private中的数据成员状态.程序设计也是如此,要的是数据. 一.const的作用 const定义变量:定义了一个不可修改的常 ...
-
【C++ 实验六 继承与派生】
实验内容 1. 某计算机硬件系统,为了实现特定的功能,在某个子模块设计了 ABC 三款芯片用于 数字计算.各个芯片的计算功能如下: A 芯片:计算两位整数的加法(m+n).计算两位整数的减法(m-n) ...
-
SQL Server进阶(六)表表达式--派生表、公用表表达式(CTE)、视图和内联表值函数
概述 表表达式是一种命名的查询表达式,代表一个有效地关系表.可以像其他表一样,在数据处理中使用表表达式. SQL Server支持四种类型的表表达式:派生表,公用表表达式,视图和内联表值函数. 为什么 ...
-
第三十六章、PyQt输入部件:QAbstractSpinBox派生类QSpinBox、 QDoubleSpinBox、QDateTimeEdit、QDateEdit和QTimeEdit
专栏:Python基础教程目录 专栏:使用PyQt开发图形界面Python应用 专栏:PyQt入门学习 老猿Python博文目录 老猿学5G博文目录 一.概述 Designer输入部件中的Spin B ...
-
Python之路【第六篇】python基础 之面向对象进阶
一 isinstance(obj,cls)和issubclass(sub,super) isinstance(obj,cls)检查是否obj是否是类 cls 的对象 和 issubclass(su ...
-
Python之路【第六篇】python基础 之面向对象(一)
一.三大编程范式 1.面向过程编程 2.函数式编程 3.面向对象编程 二.编程进化论 1.编程最开始就是无组织无结构,从简单控制流中按步写指令 2.从上述的指令中提取重复的代码块或逻辑,组织到一起(比 ...
-
《Entity Framework 6 Recipes》中文翻译系列 (30) ------ 第六章 继承与建模高级应用之多对多关联
翻译的初衷以及为什么选择<Entity Framework 6 Recipes>来学习,请看本系列开篇 第六章 继承与建模高级应用 现在,你应该对实体框架中基本的建模有了一定的了解,本章 ...
随机推荐
-
2、软件设计师要阅读的书籍 - IT软件人员书籍系列文章
软件设计师在项目组中的地位比软件工程师相对要高一些.但是他们所要阅读的书籍差别还是比较大的.同样的,软件设计师也要阅读比较多的书籍,以能够完成项目的任务为目的,同时还要提高自身在项目组中的竞争地位,而 ...
-
哇 真的是一个好插件!!!Sublime Text编辑文件后快速刷新浏览器
http://9iphp.com/web/html/sublime-text-refresh-browser.html这篇博文咯 来源:[Tips]Sublime Text编辑文件后快速刷新浏览器 - ...
-
linux运维中的命令梳理(四)
----------管理命令---------- ps命令:查看进程 要对系统中进程进行监测控制,查看状态,内存,CPU的使用情况,使用命令:/bin/ps (1) ps :是显示瞬间进程的状态,并不 ...
-
Leetcode 235 Lowest Common Ancestor of a Binary Search Tree 二叉树
给定一个二叉搜索树的两个节点,找出他们的最近公共祖先,如, _______6______ / \ ___2__ ___8__ / \ / \ 0 4 7 9 / \ 3 5 2和8的最近公共祖先是6, ...
-
设计模式 Template Method模式 显示程序猿的一天
转载请注明出处:http://blog.csdn.net/lmj623565791/article/details/26276093 不断设计模式~ Template Method模式 老套路,看高清 ...
-
SpannableString可以被点击的文字
1 TextView tv= (TextView) findViewById(R.id.textview_z); String text="一段可以被点击点击的文字,文字可以变成图片&quo ...
-
25. leetcode 217. Contains Duplicate
217. Contains Duplicate Given an array of integers, find if the array contains any duplicates. Your ...
-
chrome console的使用 : 异常和错误的处理 – Break易站
本文内容来自:chrome console的使用 : 异常和错误的处理 – Break易站 利用 Chrome DevTools 提供的工具,您可以修复引发异常的网页和在 JavaScript 中调试 ...
-
Android颜色配置器
一.Android Color设置 1.在xml文件中 想设置颜色直接设置background的属性或者其他的color属性.随便设置一个颜色如#000,再点击左边的颜色方块,弹出颜色选择器选择颜色 ...
-
FileZilla连接腾讯云Centos7
现在需要使用ftp快速上传资料去云机备份, 于是想到FileZilla. 生成密匙文件 登录腾讯云--ssh密匙 FileZilla Client 导入密匙文件 填写登录信息 连接 另外记得开放22端 ...