你们如何在一些只为自己使用的简单代码上写评论?
我主要编写 JavaScript 和 PHP 代码,但我真的找不到写评论的好方法。
如果我有一小段代码,我通常会这样做:
x = doThis(getSomeValueFromSomewhere()); // This is a short line of code
我认为这看起来真的很好,但是当线路变长或多行时它并没有真正起作用,
// Dont really like this since it's not clear if it describes only line 1, or all lines.
aLongerVariableName = (getSomeValueFromSomewhere() == "this is what I want") ? "true value" : "false value";
x = doThis(aLongerVariableName);
你是怎么做到的?