如何在C#9 中使用顶级程序 (top-level)

作者:码农读书 时间:2023-08-20 04:13:24 

目录
  • 顶级程序

  • 顶级程序中的方法

  • 顶级程序中的类

  • 顶级程序的原理分析

当我们用 C# 进行编码的时候,总需要写很多的模板代码,即使是最简单的 console 程序,想象一下,如果去测试一个 类库 或者 API 的功能,通常你会用 Console 程序去实现,在开始工作的时候会发现你受到了 C# 标准模板的限制,业务逻辑必须要写在 Main 里,如下代码所示:


    class Program
    {
        static void Main(string[] args)
        {
            //todo
        }
    }

顶级程序 是 C#9 中引入的一个新概念,允许你直接写自己的业务逻辑而不必受到模板代码的限制,顶级程序 是一个非常🐂👃的特性,可以让代码更加的干净,简短和可读,你可以通过顶级程序去探索新的 idea,这篇文章将会讨论如何在 C#9 中使用顶级程序。

顶级程序

在 C# 9.0 之前,下面的写法在 Console 程序中已经是最小化的了。


using System;
namespace IDG_Top_Level_Programs_Demo
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");
        }
    }
}

在 C# 9.0 时代,可以祭出 顶级程序 来消除那些烦人的模板代码,让代码的逻辑意图更明显,改造后的代码如下:


using System;
Console.WriteLine("Hello World!");

如何在C#9 中使用顶级程序 (top-level)

顶级程序中的方法

你也可以在顶级程序中使用方法,如下例子所示:


System.Console.WriteLine(DisplayMessage("Joydip!"));
System.Console.Read();
static string DisplayMessage(string name)
{
    return "Hello, " + name;
}

程序跑起来后,控制台将会输出:Hello, Joydip!

如何在C#9 中使用顶级程序 (top-level)

顶级程序中的类

你也可以在顶级程序中使用类,结构体,枚举,下面的代码展示了如何使用。


System.Console.WriteLine(new Author().DisplayMessage("Joydip!"));
System.Console.Read();
public class Author
{
    public string DisplayMessage(string name)
    {
        return "Hello, " + name;
    }
}

顶级程序的原理分析

现在我们来分析一下,顶级程序的底层逻辑到底是怎么样的,它本质上是一种语法糖,一种编译器的特性,也就是说你没有写模板代码的时候,编译器会帮你生成,替你负重前行,参考下面的代码段。


using System;
Console.WriteLine("Hello World!");

然后用在线工具 SharpLab https://sharplab.io/  看一下编译器替你补齐的代码。


using System;
using System.Diagnostics;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Security;
using System.Security.Permissions;
[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.DisableOptimizations | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | DebuggableAttribute.DebuggingModes.EnableEditAndContinue)]
[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)]
[assembly: AssemblyVersion("0.0.0.0")]
[module: UnverifiableCode]
[CompilerGenerated]
internal static class <Program>$
{
    private static void <Main>$(string[] args)
    {
        Console.WriteLine("Hello World!");
    }
}

总的来说,顶级程序 非常适合那些想 快速试错,验证想法 的场景,有一点要特别注意,应用程序中只能仅有一个文件使用 顶级程序,如果存在多个,编译器会抛出错误的,还有一点,如果你是 C# 新手,你可能不理解顶级程序的底层逻辑,更好的方式就是老老实实的使用原生模板代码,当你主宰了 Main 后,你将会理解 顶级程序 是多么的短小精悍!

来源:https://mp.weixin.qq.com/s/DhL8CG9SpzNKSn1zVALozQ

标签:c#9,顶级程序,top-level
0
投稿

猜你喜欢

  • Java8新特性之默认方法和静态方法

    2021-08-29 13:34:26
  • Android应用中制作选中后图标变大浮动效果的代码分享

    2022-01-09 20:38:26
  • Java SE求解汉诺塔问题的示例代码

    2022-05-10 23:44:30
  • Java面向对象选择题总结归纳

    2023-08-05 23:30:21
  • Java annotation元注解原理实例解析

    2022-09-08 00:42:45
  • Java应用多机器部署解决大量定时任务问题

    2023-10-28 17:07:17
  • 一种类似JAVA线程池的C++线程池实现方法

    2021-11-02 21:31:52
  • 在java中ArrayList集合底层的扩容原理

    2023-12-19 11:12:15
  • 关于jdk9、jdk10、jdk11、jdk12、jdk13新特性说明

    2021-07-19 17:06:34
  • spring cloud config 配置中心快速实现过程解析

    2022-02-19 06:50:22
  • Flutter开发之Widget自定义总结

    2021-11-07 12:41:03
  • Android通过ExifInterface判断Camera图片方向的方法

    2023-02-02 18:43:38
  • Java多线程编程中ThreadLocal类的用法及深入

    2022-03-17 03:21:29
  • c# 模拟串口通信 SerialPort的实现示例

    2023-09-03 22:19:50
  • 带你了解mybatis如何实现读写分离

    2023-07-29 14:26:28
  • 基于C++实现的哈夫曼编码解码操作示例

    2023-10-13 13:02:43
  • C#判断语句的表达式树实现

    2022-11-10 21:55:02
  • Java实现时间日期格式转换示例

    2023-06-06 04:45:11
  • spring boot 静态资源处理方法

    2022-07-14 22:12:42
  • Android可签到日历控件的实现方法

    2023-11-18 15:11:28
  • asp之家 软件编程 m.aspxhome.com