• C#命名空间


    namespace again

    namespace:命名空间关键字 again命名名称;

    接下来看一下明明空间该如何使用:

    定义两个明明空间,分别在里边定义一个方法

    namespace one
    {
        class first
        {
            public void eat()
            {
                Console.WriteLine("别光记得吃");
            }
        }
    }

    namespace two
    {
        class twos
        {
            public void run()
            {
                Console.WriteLine("吃饱了记得散步");
            }
        }
    }

            static void Main(string[] args)
            {

    //通过命名空间下的类名调用方法;

                one.first f = new one.first();
                two.twos t = new two.twos();
                f.eat();
                t.run();

            }

    最终输出语句:

    别光记得吃

    吃饱了记得散步

  • 相关阅读:
    AGC034F
    loj6074
    杂题
    ICPC2020南京
    CF1326F2
    Codeforces Round #692 Div1
    CF1463F
    SRM582 SemiPerfectPower
    10月30日考试 题解(质数+最小生成树+模拟+DP优化)
    10月28日考试 题解(贪心+二分+树形DP+期望+线段树)
  • 原文地址:https://www.cnblogs.com/qixiaolan/p/7683787.html
Copyright © 2020-2023  润新知