查找java标准库类文档的作者

时间:2016-08-30 11:23:22

标签: java javadoc standard-library author api-doc

对于我的研究我想知道一些Java标准库类的作者,如Socket。我用openjdk尝试过,但没那么成功。我想看看哪位作者写了API文档的哪一部分。

1 个答案:

答案 0 :(得分:2)

我在JavaDoc中找到了java.net.Socket类:

/**
 * This class implements client sockets (also called just
 * "sockets"). A socket is an endpoint for communication
 * between two machines.
 * <p>
 * The actual work of the socket is performed by an instance of the
 * {@code SocketImpl} class. An application, by changing
 * the socket factory that creates the socket implementation,
 * can configure itself to create sockets appropriate to the local
 * firewall.
 *
 * @author  unascribed
 * @see     java.net.Socket#setSocketImplFactory(java.net.SocketImplFactory)
 * @see     java.net.SocketImpl
 * @see     java.nio.channels.SocketChannel
 * @since   JDK1.0
 */
public
class Socket implements java.io.Closeable

以同样的方式获得SocketChannel class的作者:

* @author Mark Reinhold
* @author JSR-51 Expert Group
* @since 1.4

SocketImplFactory界面:

* @author  Arthur van Hoff
* @see     java.net.Socket
* @see     java.net.ServerSocket
* @since   JDK1.0

你看到这个类被包含在1996年发布的JDK 1.0版本中。可能有一组作者,他们没有在JavaDoc中指定他们的名字。

<强>更新 正如@Selphiron发现的,有OpenJDK Mercurial Reposotories。左上角有很多有用的技术信息,如日志,分支,标签等。

Gregorian Calendar课程的

Example