答案 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
课程的