您如何称呼这些不同的引言?
我有关于报价的问题。有很多引用使用文档:
'
- `
'
'
- "
“
”
如何用文字说出或讲述它?
键盘中没有包含一些符号引号,(“
,'
,'
,”
),如何在不从其他文档复制粘贴的情况下使用符号?
从程序员的角度来看,编写引用以使其彼此不同真的很重要吗?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,这绝对很重要!
'
单引号(又名撇号)`
反引号(又名坟墓)"
双引号其他的 (
'
,'
、“
和”
)被简单地称为“直”或“哑”兄弟的“智能”或“弯曲”变体('
和"
)。确切地说,它的重要性取决于您所使用的编程语言。
更多信息请参见此处。
Yes, it definitely matters!
'
single quote (aka apostrophe)`
backtick (aka grave)"
double quoteThe 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.
取决于引用的语言。一个简单的例子可以在 bash 中完成,其中引号就是一切:
在 bash(和许多其他语言)的情况下,使用单引号与双引号会产生严重的影响。检查您所使用的语言,以获取有关如何处理每个令牌的文档。
depending on the language the quotes matter. A simple example can be done in bash, where quotes are everything:
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.