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 制作一个多客户端服务器聊天应用程序。
有没有办法不使用多线程(每个客户端一个线程)? 因为我的应用是在手机上运行的,所以多线程会不会太慢?
我猜你误解了这个概念。打算在移动设备上运行的聊天应用程序通常如下工作:
对于非移动应用程序,有些人使用很棒的Netty客户端-服务器(我也是)。可能此服务器的一些想法可以帮助您创建正确的架构:)