作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
关闭。这个问题是opinion-based .它目前不接受答案。
想改善这个问题吗?更新问题,以便可以通过 editing this post 用事实和引文回答问题.
3年前关闭。
Improve this question
恐怕这是一个非常多余且无趣的问题,但我总是对此感到疑惑。当您使用内联注释(而不是将出现在生成的文档中的注释)注释代码并且变量名称出现在注释中时,您如何将其与普通文本区分开来?例如。:
// Try to parse type.
parsedType = tryParse(type);
// Try to parse "type".
// Try to parse 'type'.
// Try to parse *type*.
// Try to parse <type>.
// Try to parse [type].
// Try to parse variable type.
等)
最佳答案
我 99.9% 的时间都在做 PHP,但不存在这个问题:
// Try to parse $type.
// Try to parse 'type'.
关于文档样式 : how do you differentiate variable names from the rest of the text within a comment?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2989522/
我是一名优秀的程序员,十分优秀!