当前位置:  开发笔记 > 编程语言 > 正文

如何用Java编写构造函数的API文档

如何解决《如何用Java编写构造函数的API文档》经验,为你挑选了1个好方法。



1> esteban rinc..:

创建a的全部目的Documentation是让其实现者能够理解您打算在代码中执行的操作。

您是否应该documentation为所有内容创建? 计划使用您的程序员API可能不会理解method,property,constructor,classso 的“明显”目的,即使是显而易见的,也要这样做(对您来说可能很明显)。

使用@param, @return annotations应只当这的情况下,你的问题的代码示例您有:

/**
* Another constructor for class Time1
*/ public Time1 (Time1 other) 
    {
        _hour = other._hour; _minute = other._minute; _second = other._second;
    }

那么,您的构造函数返回什么吗?不,为什么要使用@return注释。但是你 constructor 确实有一个参数,所以在这里做了正确的事情是:

/**
* Another constructor for class Time1
* @param other  
*/
public Time1 (Time1 other) 
    {
        _hour = other._hour; _minute = other._minute; _second = other._second;
    } 

推荐阅读
家具销售_903
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有