C#定义类的访问修饰符是指什么意思?
usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;namespa...
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication3
{
class Program
{
static void Main(string[] args)
{
A a = new A();
B b = new B();
}
protected class A
{
}
protected class B : A
{
}
}
}
这一段不在A和B中创建对象为什么能通过 展开
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication3
{
class Program
{
static void Main(string[] args)
{
A a = new A();
B b = new B();
}
protected class A
{
}
protected class B : A
{
}
}
}
这一段不在A和B中创建对象为什么能通过 展开
展开全部
protected修饰符不止包括子类 还当前类中的方法可以访问的。。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询