你遇到过的源代码中最好的注释是什么?
当前回答
int main(void)
/* Program starts here */
其他回答
//迭代一次 美元我+ +;
不幸的是,它是我的,在我的“必须评论一切”阶段。
来自嵌入式系统中的电池监测模块:
// batmon.c drives the rastamobile
在JUnit API中找到:
/**
* ...as the moon sets over the early morning Merlin, Oregon
* mountains, our intrepid adventurers type...
*/
public Test createTest(Class theClass, String name) {
...
}
来自c#中的单元测试类:
#region quis custodiet ipsos custodes?
[Fact]
public void TestPositive()
{
Assert.Equal(4, 2 + 2);
}
[Fact]
public void TestNegative()
{
Assert.Equal(5, 2 + 2);
}
#endregion
我看到有人对代码的评论:
// This comment is self explanatory.
我猜他是想说“可变的”,但这个错误造成了一个有趣的评论……想想这里的循环逻辑,以及写它的徒劳。