Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在学习使用 java 的套接字。我正在学习 TCP 套接字和 UDP 套接字,包括多播套接字。我只是想知道,还有哪些其他类型的套接字或网络机制可以用来制作 voip 和实时在线游戏等?哪一种最常用于行业?
简短的回答,如果你能容忍任何数据包丢失,UDP 会更好,否则 TCP。基于这个原理,voip一般使用UDP(用于数据包而不是控制包)。