您如何称呼这些不同的引言?

发布于 2024-09-29 01:47:34 字数 354 浏览 3 评论 0原文

我有关于报价的问题。有很多引用使用文档:

  • '
  • `
  • '
  • '
  • "

如何用文字说出或讲述它?

键盘中没有包含一些符号引号,(''),如何在不从其他文档复制粘贴的情况下使用符号?

从程序员的角度来看,编写引用以使其彼此不同真的很重要吗?

I got question about quote. There many few quote using documentation:

  • '
  • `
  • "

How to say or tell it in word?.

There few symbol quote not include in keyboard, (, , , ), how could I using symbol without copy-paste from other document.

As programmer view, it really matter write quote to make different from one to another?

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

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

发布评论

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

评论(2

天生の放荡 2024-10-06 01:47:34

是的,这绝对很重要!

  • ' 单引号(又名撇号)
  • ` 反引号(又名坟墓)
  • " 双引号

其他的 (', ')被简单地称为“直”或“哑”兄弟的“智能”或“弯曲”变体('")。

确切地说,它的重要性取决于您所使用的编程语言。

更多信息请参见此处

Yes, it definitely matters!

  • ' single quote (aka apostrophe)
  • ` backtick (aka grave)
  • " double quote

The other ones (, , , and ) are simply known as "smart" or "curved" variants of their "straight" or "dumb" brethren (' and ").

Precisely how it matters depends on the programming language you're using.

More info here.

草莓味的萝莉 2024-10-06 01:47:34

取决于引用的语言。一个简单的例子可以在 bash 中完成,其中引号就是一切:

bash$: "I am `whoami`"
I am root
bash$: 'I am `whoami`'
I am `whoami`

在 bash(和许多其他语言)的情况下,使用单引号与双引号会产生严重的影响。检查您所使用的语言,以获取有关如何处理每个令牌的文档。

depending on the language the quotes matter. A simple example can be done in bash, where quotes are everything:

bash$: "I am `whoami`"
I am root
bash$: 'I am `whoami`'
I am `whoami`

In the case of bash ( and many other languages ), using single quotes, vs double quotes has serious implications. Check the language you're using for documentation on how each token is treated.

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