关键字
Keywords are special words that help the compiler to understand and properly parse code.
关键字是帮助编译器理解和正确解析代码的特殊单词。
Currently, Go has 25 keywords that can be classified into four categories:
Keywords used for declaration: c…
socket常见API
创建套接字:(TCP/UDP,客户端服务器) int socket(int domain, int type, int protocol); 绑定端口号:(TCP/UDP,服务器) int bind(int sockfd, const struct sockaddr …