如何在保持代码干燥的同时编写 quine?

发布于 2024-12-19 07:25:30 字数 532 浏览 0 评论 0原文

quine 是一个打印自己的源代码而不从文件系统打开自身的程序。

下面是 C# 中此类 quine 的示例:

class Q{static void Main(){var s="class Q{{static void Main(){{var s={1}{0}{1};System.Console.Write(s,s,'{1}');}}}}";System.Console.Write(s,s,'"');}}

不过,这个解决方案对我来说似乎相当混乱且不优雅。这是一个很难维护的程序,因为每当您更改源代码时,您都必须在两个地方进行操作,即 编程的一大禁忌

有没有一种用 C# 编写 quine 且不违反 DRY 原则的好方法?

A quine is a program that prints its own source code without opening itself from the filesystem.

Here is an example of such a quine in C#:

class Q{static void Main(){var s="class Q{{static void Main(){{var s={1}{0}{1};System.Console.Write(s,s,'{1}');}}}}";System.Console.Write(s,s,'"');}}

This solution seems pretty messy and inelegant to me, though. It's a terrible program to maintain because whenever you change the source, you have to do it in two places, which is a big programming no-no.

Is there a good way to write a quine in C# that doesn't violate the DRY principle?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文