Chrome开发者工具
Elements(元素)、Network(网络)、Sources(源代码:调试JS的地方)、Timeline(时间线)、Profiles(性能分析)、Resources(资源:查看Cookie的地方)、Audits(审查)、Console(控制台)
《UNIX网络编程》术语汇总
术语 | 全称 | 中文 | 页码 |
---|---|---|---|
apue.3e | Advanced Programming in the UNIX Environment Third Edition | UNIX环境高级编程(第3版) | |
unp | UNIX Network Programming | UNIX网络编程 | |
sockfd | socket descriptor | 套接字描述符 | |
listenfd | listening descriptor | 监听描述符 | 13 |
connfd | connected descriptor | 已连接描述符 | 13 |
ISO | International Organization for Standardization | 国际标准化组织 | 16 |
POSIX | Portable Operating System Interface | 可移植操作系统接口 | 22 |
OSI | open systems interconnection | 开放系统互连(七层模型) | 17 |
TCP | Transmission Control Protocol | 传输控制协议 | 3 |
IP | Internet Protocal | 网际协议 | 3 |
UDP | User Datagram Protocal | 用户数据报协议 | 3 |
LAN | local area network | 局域网 | 4 |
WAN | wide area network | 广域网 | 4 |
IPC | interprocess communication | 进程间通信 | |
sem | semaphore | 信号量 | |
Go语言
术语 | 全称 | 中文 |
---|---|---|
atoi | array to integer,strconv.Atoi() | 把字符串转换成整型数 |
fmt | format | 格式化 |
stmt |
statement, prepared statements:预处理语句 |
数据库对象。 Statement 是 Java 执行数据库操作的一个重要方法,用于在已经建立数据库连接的基础上,向数据库发送要执行的SQL语句。Statement对象,用于执行不带参数的简单SQL语句。 |