对于我的研究,我想知道一些 Java 标准库类的作者,比如Socket。我用openjdk尝试过,但没有那么成功。我想看看哪个作者写了 API 文档的哪个部分。
问问题
1221 次
1 回答
2
我在java.net.Socket
类的 JavaDoc 中找到了它:
/**
* 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
类的作者:
* @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 Repositories。左上角有很多有用的技术信息,如日志、分支、标签等。
Gregorian Calendar
类的例子。
于 2016-08-30T12:55:03.097 回答