java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > java 线程阻塞

java实现线程阻塞式方法

作者:Flying_Fish_Xuan

Java阻塞式方法会使线程暂停执行,不占用CPU资源直至条件满足,常见阻塞方法如Thread.sleep()、Object.wait()和I/O操作,具有一定的参考价值,感兴趣的可以了解一下

在Java编程中,阻塞式方法(blocking methods)指的是那些在被调用后,当前线程会暂停执行,直到某些条件满足或事件发生后才继续运行的方法。在这种情况下,当前线程会进入阻塞状态(blocking state),并且不会占用CPU资源,但也无法执行任何其他操作,直到该方法完成或条件满足。

1. 阻塞式方法的特点

阻塞式方法通常有以下几个特点:

2. Java中的常见阻塞式方法

在Java中,有许多常见的阻塞式方法,它们通常出现在多线程编程、I/O操作和网络编程中。

2.1 Thread.sleep()

Thread.sleep(long millis) 是一个阻塞式方法,用于使当前线程休眠指定的毫秒数。在此期间,线程处于阻塞状态,不会执行任何操作,直到指定的时间过去。

public class SleepExample {
    public static void main(String[] args) {
        System.out.println("Thread is going to sleep...");
        try {
            Thread.sleep(2000);  // 线程休眠2秒
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        System.out.println("Thread woke up!");
    }
}

在这个例子中,Thread.sleep(2000) 使当前线程阻塞2秒,之后继续执行。

2.2 Object.wait()

Object.wait() 是一个阻塞式方法,它使当前线程进入等待状态,直到其他线程调用 notify() 或 notifyAll() 方法唤醒它。通常用于线程间的同步和通信。

public class WaitNotifyExample {
    private static final Object lock = new Object();

    public static void main(String[] args) {
        Thread waitingThread = new Thread(() -> {
            synchronized (lock) {
                try {
                    System.out.println("Thread is waiting...");
                    lock.wait();  // 线程进入等待状态
                    System.out.println("Thread is resumed!");
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }
        });

        Thread notifyingThread = new Thread(() -> {
            synchronized (lock) {
                System.out.println("Thread is notifying...");
                lock.notify();  // 唤醒等待的线程
            }
        });

        waitingThread.start();
        try {
            Thread.sleep(1000);  // 确保waitingThread进入等待状态
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        notifyingThread.start();
    }
}

在这个例子中,wait() 方法使 waitingThread 进入等待状态,直到 notifyingThread 调用 notify() 方法将其唤醒。

2.3 Thread.join()

Thread.join() 是一个阻塞式方法,它让当前线程等待另一个线程完成执行后再继续。例如,如果在主线程中调用 t.join(),主线程将被阻塞,直到线程 t 运行完毕。

public class JoinExample {
    public static void main(String[] args) {
        Thread t = new Thread(() -> {
            try {
                Thread.sleep(2000);
                System.out.println("Thread finished execution");
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        });

        t.start();

        try {
            t.join();  // 主线程等待t线程完成
        } catch (InterruptedException e) {
            e.printStackTrace();
        }

        System.out.println("Main thread continues after t finishes");
    }
}

在这个例子中,t.join() 使主线程阻塞,直到 t 线程执行完毕。

2.4 I/O 操作中的阻塞方法

在Java中,I/O操作(如文件读写、网络通信)通常是阻塞式的。例如,InputStream.read() 方法在没有数据可供读取时会使当前线程阻塞,直到数据可用或达到流的末尾。

import java.io.FileInputStream;
import java.io.IOException;

public class FileReadExample {
    public static void main(String[] args) {
        try (FileInputStream fis = new FileInputStream("example.txt")) {
            int data;
            while ((data = fis.read()) != -1) {  // read() 是阻塞式方法
                System.out.print((char) data);
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

在这个例子中,fis.read() 方法会阻塞,直到读取到数据或文件的末尾。

2.5 网络编程中的阻塞方法

在网络编程中,Socket.accept()SocketInputStream.read() 等方法也是阻塞式的。例如,ServerSocket.accept() 方法会阻塞当前线程,直到有客户端连接到服务器。

import java.io.IOException;
import java.net.ServerSocket;
import java.net.Socket;

public class ServerSocketExample {
    public static void main(String[] args) {
        try (ServerSocket serverSocket = new ServerSocket(8080)) {
            System.out.println("Server is listening on port 8080...");
            Socket clientSocket = serverSocket.accept();  // accept() 是阻塞式方法
            System.out.println("Client connected: " + clientSocket.getInetAddress());
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

在这个例子中,serverSocket.accept() 方法会阻塞,直到有客户端连接到服务器。

3. 阻塞式方法的优缺点

优点

缺点

4. 替代方案:非阻塞式方法与异步编程

由于阻塞式方法的固有缺陷,尤其是在高并发和实时性要求高的系统中,通常会考虑使用非阻塞式方法或异步编程模型。

4.1 非阻塞式I/O

Java NIO(New I/O)库引入了非阻塞I/O,允许线程在没有数据可用时继续执行其他任务。通过选择器(Selector)模型,可以实现一个线程管理多个I/O通道的操作,从而提高并发性能。

import java.io.IOException;
import java.nio.channels.*;
import java.net.InetSocketAddress;

public class NonBlockingServerExample {
    public static void main(String[] args) throws IOException {
        Selector selector = Selector.open();
        ServerSocketChannel serverSocketChannel = ServerSocketChannel.open();
        serverSocketChannel.bind(new InetSocketAddress(8080));
        serverSocketChannel.configureBlocking(false);
        serverSocketChannel.register(selector, SelectionKey.OP_ACCEPT);

        while (true) {
            selector.select();
            for (SelectionKey key : selector.selectedKeys()) {
                if (key.isAcceptable()) {
                    ServerSocketChannel server = (ServerSocketChannel) key.channel();
                    SocketChannel client = server.accept();
                    client.configureBlocking(false);
                    client.register(selector, SelectionKey.OP_READ);
                    System.out.println("Connected to client: " + client.getRemoteAddress());
                }
                // Handle other operations like OP_READ, OP_WRITE
            }
            selector.selectedKeys().clear();
        }
    }
}

4.2 异步编程模型

Java的 CompletableFuture 提供了强大的异步编程支持。通过 CompletableFuture,你可以在非阻塞的情况下处理异步任务。

import java.util.concurrent.CompletableFuture;

public class CompletableFutureExample {
    public static void main(String[] args) {
        CompletableFuture.supplyAsync(() -> {
            try {
                Thread.sleep

(2000); // 模拟长时间操作
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            return "Result after 2 seconds";
        }).thenAccept(result -> {
            System.out.println("Received: " + result);
        });

        System.out.println("Main thread continues...");
    }
}

在这个例子中,异步任务在后台运行,主线程不必等待它完成,可以继续执行其他操作。

5. 总结

阻塞式方法是Java编程中处理线程同步、I/O操作和网络通信的常见方式。虽然它们易于使用,但在高并发和性能要求高的应用中,阻塞式方法可能会导致性能瓶颈。因此,开发者需要根据具体的应用场景,权衡使用阻塞式方法与非阻塞式方法或异步编程模型。

通过理解阻塞式方法的工作原理及其适用场景,开发者可以更好地设计和优化Java应用程序,满足不同场景下的性能需求。

到此这篇关于java实现线程阻塞式方法的文章就介绍到这了,更多相关java 线程阻塞内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文