为什么在解释性语言中#通常会引入注释?

发布于 2024-10-17 03:42:31 字数 86 浏览 2 评论 0原文

为什么在解释语言中 # 通常会引入注释?这个问题是在 Shell 编程考试中提出的,但我没有找到任何关于为什么是 # 的提示。

有什么想法吗?

Why in interpreted languages the # normally introduces a comment? This question was asked in an exam on Shell Programming but I don't find any hint on why it's the #.

Any ideas?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

塔塔猫 2024-10-24 03:42:31

make 使用#-comment 结构; sh,第一个 shell,使用相同的 # 注释。后来的 shell(csh、ksh、bash、jsh 等)的编写者明白,如果每个 shell 都有自己的注释约定,这将给用户带来负担,特别是因为所有这些 shell 脚本都可以运行在任何外壳下。

发明另一种注释约定是为了确保没有人会使用任何新引入的 shell。

# 注释在 Unix 历史上很早就成为事实上的标准。

无论如何,这就是我的看法。

——皮特

make uses the #-comment construct; and sh, one the first shells, uses the same #-comment. The writers of later shells -- csh, ksh, bash, jsh, and more -- understood that it would be a burden on users if each were to have its own comment convention, particularly since all of these shell scripts can sort-of run under any shell.

To invent yet another comment convention would be to ensure that no one would use any newly-introduced shell.

The #-comment became a de facto standard very early in Unix history.

That's my take, anyway.

-- pete

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文