首页 > Java > java教程 > 正文

Java 中的线程并发

Linda Hamilton
发布: 2024-11-02 11:05:30
原创
850 人浏览过

Thread Concurrency In Java

高级 Java 中的线程并发或多线程允许多个线程同时执行,从而增强复杂应用程序的性能和响应能力。以下是其关键概念和实用程序的简明细分。

Java 中多线程的主要特性:

  1. 创建线程。
  2. 使用执行器进行线程管理
  3. 并发实用程序
  4. 分叉/连接框架
  5. 具有完整未来的异步编程

1️⃣ 创建线程。

  • 扩展线程:通过重写 run() 方法创建一个新线程。

  • 实现 Runnable:将 Runnable 实例传递给 Thread 对象。

  • 实现 Callable:与 Runnable 不同,Callable 允许线程返回结果并处理检查的异常。

2️⃣ 使用执行器进行线程管理。

  • Java 的执行器框架 (java.util.concurrent.ExecutorService) 管理线程池,允许高效处理任务。

  • FixedThreadPool 和 CachedThreadPool 等执行器创建一个可重用线程池,有效地管理它们以减少创建新线程的开销。

3️⃣ 并发实用程序

  • 锁:像 ReentrantLock 这样的高级锁定机制比同步方法提供了更多的灵活性,允许定时和可中断的锁定。

  • 原子变量:java.util.concurrent.atomic 包包含提供无锁线程的原子类(AtomicInteger、AtomicLong)-
    安全运营。

  • 同步器:包括以下实用程序:
    CountDownLatch:允许线程等待其他线程完成
    任务。
    CyclicBarrier:在公共
    处同步固定数量的线程 障碍点。
    信号量:通过允许特定数量来控制对资源的访问
    并发线程数。

4️⃣ 分叉/连接框架

  • 1.对于分治任务,ForkJoinPool 将任务拆分为并行处理的较小子任务,这在递归算法中特别有用。

5️⃣ 具有完整未来的异步编程

  • CompletableFuture 支持异步和非阻塞编程,允许链接和组合复杂工作流程的任务。

使用线程示例

主类调用2个不同的线程

public class ThreadConcurrence {
    public static void main(String[] args) {
        // There is 2 type you have to call thread method
                //1- Extend Thread class
                //1- Implements Runnable class
        // why Implement concept is introduce here
                // because in java multiple thread dose not support that's so why implement class will introduce
                // ex- when u extend (inherit) base call, then at that time this call can not extend another Thread class.
        int n = 10;
        for (int i = 0; i < n; i++) {

            // in case of extend(inherit) Thread class
            Thread1 t1 = new Thread1();
            t1.start();

            // in case of implement Runnable class
            Thread t2 =new Thread(new Thread2());
            t2.start();
        }
    }
}

登录后复制

线程1--(扩展线程)

public class Thread1 extends Thread{
    //If you are extend Thread class then you  most be used run()
    // Because when you start a thread then run() automatically call and run
    public void run(){
        try {
            System.out.println("Thread1 is running now....");
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
    }
}

登录后复制

Thread2--(实现 Runnable)

public class Thread2 implements Runnable {
    //IF you are implement thread Then run() will be executed.
    // Because when you start a thread then run() automatically call and run
    public void run(){
        try {
            System.out.println("Thread2 is running.......");
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
    }
}

登录后复制

结论:

通过利用这些工具和框架,高级 Java 多线程可以构建可无缝处理并发任务的可扩展、高性能应用程序。

如需更多见解,请随时提及您的 Linkedin 和 GitHub 以获取深入的示例和代码示例!如果您需要任何具体调整,请告诉我。

Linkedin:https://www.linkedin.com/in/pravanjan-17p/

GitHub:https://github.com/Prabhanjan-17p

以上是Java 中的线程并发的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:dev.to
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!