Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/java/369.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
使用Eclipse的Javadoc_Java_Javadoc - Fatal编程技术网

使用Eclipse的Javadoc

使用Eclipse的Javadoc,java,javadoc,Java,Javadoc,也许你能帮我,我正在忙着做一门需要Javadoc的课程。我知道如何制作一个,但由于某些原因,文档中没有列出所有私有方法和方法详细信息部分 这是代码。我已经包括了私有方法,而不是所有的代码。斯塔克对我大喊大叫。哈哈 /** * This method adds a bird to the ArrayList * @param listBird brings the ArrayList into the method */ private static

也许你能帮我,我正在忙着做一门需要Javadoc的课程。我知道如何制作一个,但由于某些原因,文档中没有列出所有私有方法和方法详细信息部分

这是代码。我已经包括了私有方法,而不是所有的代码。斯塔克对我大喊大叫。哈哈

    /**
     * This method adds a bird to the ArrayList
     * @param listBird brings the ArrayList into the method
     */ 
    private static void addToArray(ArrayList<String> listBird)
    {
    ... 
    }
    /**
     * This method removes a bird to the ArrayList
     * @param listBird brings the ArrayList into the method
     */ 
    private static void deleteEntry(ArrayList<String> listBird)
    {
        ...
    }
    /**
     * This method displays the items within the ArrayList
     * @param listBird brings the ArrayList into the method
     */         
    private static void displayArray(ArrayList<String> listBird)
    {
        ...
     }
    /**
     * This method uses binary search to find an item within the array
     * @param listBird brings the ArrayList into the method
     */ 
    private static void searchArray(ArrayList<String> listBird)
    {
        String searchValue = JOptionPane.showInputDialog(null, "Enter a bird name to search for");
        int start, mid, end, returnValue;
        returnValue = -1;
        ..................
/**
*此方法将向ArrayList添加一只鸟
*@param listBird将ArrayList带到方法中
*/ 
私有静态void addToArray(ArrayList listBird)
{
... 
}
/**
*此方法将一只鸟删除到ArrayList
*@param listBird将ArrayList带到方法中
*/ 
私有静态void deleteEntry(ArrayList listBird)
{
...
}
/**
*此方法显示ArrayList中的项
*@param listBird将ArrayList带到方法中
*/         
私有静态void displayArray(ArrayList listBird)
{
...
}
/**
*此方法使用二进制搜索在数组中查找项
*@param listBird将ArrayList带到方法中
*/ 
私有静态void searchArray(ArrayList listBird)
{
String searchValue=JOptionPane.showInputDialog(null,“输入要搜索的鸟名”);
int开始、中间、结束、返回值;
返回值=-1;
..................
你也不会,该公司表示(部分)

文档类 在javadoc运行期间为其生成详细文档的类和接口。要进行文档记录,源文件必须可用,其源文件名或包名必须传递到javadoc命令中,并且不能通过其(公共、受保护、包私有或私有)过滤掉。我们还将其称为javadoc输出中包含的类或包含的类

tl;dr


对于(从链接)您可以在打开Javadoc首选项页面
Java>Compiler>Javadoc
首选项页面上指明您对Javadoc设置的首选项。

使用
-private
参数非常感谢!这真的很有帮助,非常感谢!
-private