C#定义类的protected访问修饰符是指什么意思?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();}protec
来源:学生作业帮助网 编辑:六六作业网 时间:2024/11/09 10:13:23
C#定义类的protected访问修饰符是指什么意思?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();}protec
C#定义类的protected访问修饰符是指什么意思?
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
{
}
}
}
C#定义类的protected访问修饰符是指什么意思?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();}protec
受保护的意思,就是说这个方法只能是继承他的类可以用,就是他儿子能用,其他都不能用的意思.类也是一样