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 中有 2 个线程,我想把它们连接起来。我使用了类 PipedInputStream 和 PipedOutputStream,但我想发送对象,我该怎么做?谢谢
为什么不使用Queue. 生产者 cam 泵送消费者可以接收和处理的队列上的对象。
Queue
您可以在 java 中使用几种实现BlockingQueue,例如LinkedBlockingQueue.
BlockingQueue
LinkedBlockingQueue
如果您有任何特定的用例,您必须详细说明。