码迷,mamicode.com
首页 > Windows程序 > 详细

C# 密封类使用sealed修饰

时间:2014-10-28 23:28:36      阅读:273      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   ar   使用   sp   div   on   

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

namespace @sealed
{
    class Program
    {
        static void Main(string[] args)
        {
        }
    }

   
    public  class Person
    { }

    //密封类
    /**密封类特征:
     *1、不能够被其他类继承,但是可以继承其他类
    */
    public sealed class Teacher:Person 
    { }
}

 

C# 密封类使用sealed修饰

标签:style   blog   io   color   ar   使用   sp   div   on   

原文地址:http://www.cnblogs.com/zoro-zero/p/4058005.html

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