- 论坛徽章:
- 0
|
/**
* Get the blue colour component as an integer in the range [0,max].
*
* @param max a value specifiyng the upper limit of the colour range
*
* @return the blue component
*/
public int getBlueAsInt(final int max) {
return (int)(blue*max);
}
需要得到函数名,和上面对应的注释。
getBlueAsInt
Get the blue colour component as an integer in the range [0,max].
@param max a value specifiyng the upper limit of the colour range
@return the blue component
有些函数可能没有注释,那么就只需要函数名
如果可以,把public int getBlueAsInt(final int max)完整输出也可以:wink: |
|