vs c++ 里面注释很简陋,能不能下载注释丰富一点的头文件,像 java 这样:
/**
* Creates an unconnected Socket with a user-specified
* SocketImpl.
* <P>
* @
param impl an instance of a <B>SocketImpl</B>
* the subclass wishes to use on the Socket.
*
* @
exception SocketException if there is an error in the underlying protocol,
* such as a TCP error.
* @
since JDK1.1
*/
protected Socket(SocketImpl impl) throws SocketException {
this.impl = impl;
if (impl != null) {
checkOldImpl();
this.impl.setSocket(this);
}
}