关耳er |
|
||
2020年3月23日
摘要:
并发队列 在并发队列上JDK提供了两套实现,一个是以ConcurrentLinkedQueue为代表的高性能队列,一个是以BlockingQueue接口为代表的阻塞队列,无论哪种都继承自Queue。 一、ConcurrentLinkedQueue ConcurrentLinkedQueue:是一个适 阅读全文
摘要:
一、线程实现方式 1.继承Thread类 2.实现Runnable接口 3.线程池 4.Callable 二、无论使用继承Thread类还是实现Runnable接口,还是使用线程池都没有办法解决2个问题 1.线程执行没有返回值结果 2.线程执行没有办法抛出异常,只能自己通过try-catch解决 三 阅读全文
|
Copyright © 2024 关耳er
Powered by .NET 9.0 on Kubernetes |