//私有的:private 
            //公有的:public 
            //受保护的:protected 只能在只有在分类和子类中可以访问
            //静态的 static 无需实例化,可直接调用,不能用private定义
            //密封的 sealed 不能被重写,不能别继承,
            //抽象的 abstact
原文:http://www.cnblogs.com/huweijun/p/3879910.html