C#教程

关注公众号 jb51net

关闭
首页 > 软件编程 > C#教程 > C#可访问级别

C#可访问级别Public,private,protected,internal

作者:搬砖的诗人Z

本文主要介绍了C#可访问级别Public,private,protected,internal,文中通过示例代码介绍的非常详细,需要的朋友们下面随着小编来一起学习学习吧

在C#中,可访问级别(access modifiers)用于控制类、字段、方法和属性等成员的可访问性。C#提供了几种可访问级别,它们决定了哪些代码可以访问特定成员。

以下是C#中最常见的可访问级别:

示例代码:

using System;

public class Example
{
    public int publicField; // 公共字段

    private int privateField; // 私有字段

    protected int protectedField; // 受保护字段

    internal int internalField; // 内部字段

    protected internal int protectedInternalField; // 受保护的内部字段

    // 公共方法
    public void PublicMethod()
    {
        Console.WriteLine("This is a public method.");
    }

    // 私有方法
    private void PrivateMethod()
    {
        Console.WriteLine("This is a private method.");
    }

    // 受保护方法
    protected void ProtectedMethod()
    {
        Console.WriteLine("This is a protected method.");
    }

    // 内部方法
    internal void InternalMethod()
    {
        Console.WriteLine("This is an internal method.");
    }

    // 受保护的内部方法
    protected internal void ProtectedInternalMethod()
    {
        Console.WriteLine("This is a protected internal method.");
    }
}

public class Derived : Example
{
    public void AccessProtectedField()
    {
        // 在派生类中可以访问受保护字段
        protectedField = 10;
        Console.WriteLine("Accessing protected field from derived class: " + protectedField);
    }
}

class Program
{
    static void Main(string[] args)
    {
        Example example = new Example();
        example.publicField = 5; // 可以访问公共字段
        Console.WriteLine("Accessing public field: " + example.publicField);

        // 无法访问私有字段
        // example.privateField = 10; // 编译错误

        // 无法访问受保护字段
        // example.protectedField = 15; // 编译错误

        example.internalField = 20; // 可以访问内部字段
        Console.WriteLine("Accessing internal field: " + example.internalField);

        example.protectedInternalField = 25; // 可以访问受保护的内部字段
        Console.WriteLine("Accessing protected internal field: " + example.protectedInternalField);

        example.PublicMethod(); // 可以调用公共方法
        // 无法调用私有方法
        // example.PrivateMethod(); // 编译错误

        // 无法调用受保护方法
        // example.ProtectedMethod(); // 编译错误

        example.InternalMethod(); // 可以调用内部方法

        example.ProtectedInternalMethod(); // 可以调用受保护的内部方法

        Derived derived = new Derived();
        derived.AccessProtectedField(); // 可以在派生类中访问受保护字段
    }
}

到此这篇关于C#可访问级别Public,private,protected,internal的文章就介绍到这了,更多相关C#可访问级别内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家! 

您可能感兴趣的文章:
阅读全文