码迷,mamicode.com
首页 > 其他好文 > 详细

多态,接口

时间:2015-12-14 10:34:42      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Factory
{
public class person
{
int yanjing;
int erduo;
int bizi;
int foot;
int shou;
string sex;

void Speak()
{
//
}

void Eat()
{
//
}

public void printSex()
{
//
}
}

public interface Career
{
void positon();
}

public class Chief : person, Career
{
public void positon()
{
Console.WriteLine("我是习大大主席");
}
}
public class Secretary : person, Career
{
public void positon()
{
Console.WriteLine("我的职位是秘书");
}

}

class Program5
{
//static void Main()
//{
// Career chief = new Chief();
// chief.positon();
// Console.WriteLine();
// Career secretary = new Secretary();
// secretary.positon();
// Console.ReadLine();
//}
}

 

}

多态,接口

标签:

原文地址:http://www.cnblogs.com/pcc5201314/p/5044208.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!