有没有办法从方法文档主体添加一个或多个方法参数的引用?就像是:
/**
* When {@paramref a} is null, we rely on b for the discombobulation.
*
* @param a this is one of the parameters
* @param b another param
*/
void foo(String a, int b)
{...}
Run Code Online (Sandbox Code Playgroud)