java中称为文档字符串是什么?
2022-09-01 10:55:35
在Java方法之前,我们有这样的东西:
/**
* Takes a number and returns its square root.
* @param x The value to square.
* @return The square root of the given number.
*/
public float getSqrt(float x) {
...
}
这有名字吗(就像Python中的文档字符串一样)?