java - 如果您将一个可运行对象提交给具有多个线程的执行程序服务,多个线程是否会执行该可运行对象?

标签 java multithreading concurrency runnable executorservice

我很难理解 ExecutorService 在 Java 8 中的工作原理。我试图理解此网站上的一些代码:https://crunchify.com/hashmap-vs-concurrenthashmap-vs-synchronizedmap-how-a-hashmap-can-be-synchronized-in-java/

特别是在最后他测试了不同 map 的运行时间。这是代码:

public class CrunchifyConcurrentHashMapVsSynchronizedMap {

public final static int THREAD_POOL_SIZE = 5;

public static Map<String, Integer> crunchifyHashTableObject = null;
public static Map<String, Integer> crunchifySynchronizedMapObject = null;
public static Map<String, Integer> crunchifyConcurrentHashMapObject = null;

public static void main(String[] args) throws InterruptedException {

    // Test with Hashtable Object
    crunchifyHashTableObject = new Hashtable<String, Integer>();
    crunchifyPerformTest(crunchifyHashTableObject);

    // Test with synchronizedMap Object
    crunchifySynchronizedMapObject = Collections.synchronizedMap(new HashMap<String, Integer>());
    crunchifyPerformTest(crunchifySynchronizedMapObject);

    // Test with ConcurrentHashMap Object
    crunchifyConcurrentHashMapObject = new ConcurrentHashMap<String, Integer>();
    crunchifyPerformTest(crunchifyConcurrentHashMapObject);

}

public static void crunchifyPerformTest(final Map<String, Integer> crunchifyThreads) throws InterruptedException {

    System.out.println("Test started for: " + crunchifyThreads.getClass());
    long averageTime = 0;
    for (int i = 0; i < 5; i++) {

        long startTime = System.nanoTime();
        ExecutorService crunchifyExServer = Executors.newFixedThreadPool(THREAD_POOL_SIZE);

        for (int j = 0; j < THREAD_POOL_SIZE; j++) {
            crunchifyExServer.execute(new Runnable() {
                @SuppressWarnings("unused")
                @Override
                public void run() {

                    for (int i = 0; i < 500000; i++) {
                        Integer crunchifyRandomNumber = (int) Math.ceil(Math.random() * 550000);

                        // Retrieve value. We are not using it anywhere
                        Integer crunchifyValue = crunchifyThreads.get(String.valueOf(crunchifyRandomNumber));

                        // Put value
                        crunchifyThreads.put(String.valueOf(crunchifyRandomNumber), crunchifyRandomNumber);
                    }
                }
            });
        }

        // Initiates an orderly shutdown in which previously submitted tasks are executed, but no new tasks will be accepted. Invocation
        // has no additional effect if already shut down.
        // This method does not wait for previously submitted tasks to complete execution. Use awaitTermination to do that.
        crunchifyExServer.shutdown();

        // Blocks until all tasks have completed execution after a shutdown request, or the timeout occurs, or the current thread is
        // interrupted, whichever happens first.
        crunchifyExServer.awaitTermination(Long.MAX_VALUE, TimeUnit.DAYS);

        long entTime = System.nanoTime();
        long totalTime = (entTime - startTime) / 1000000L;
        averageTime += totalTime;
        System.out.println("500K entried added/retrieved in " + totalTime + " ms");
    }
    System.out.println("For " + crunchifyThreads.getClass() + " the average time is " + averageTime / 5 + " ms\n");
}

}

那么在 crunchifyPerformTest 类中,他用 5 个线程启动 ExecutorService,然后提交 5 个不同的可运行对象,每次对 HashMap 进行 500k 次读取和写入?执行器服务会自动有 5 个线程执行每个可运行对象吗?

最佳答案

没有。每个Runnable 都在一个线程上执行。这意味着所有 Runnable 都将并行执行,因为 Runnable 的数量与可用线程的数量相匹配。

您还可以提交 6 个 Runnable。在这种情况下,其中 5 个将并行执行,并且一旦一个 Runnable 完成执行,第六个将被执行。

顺便说一下,我认为docs对行为非常清楚 这个ExecutorService

关于java - 如果您将一个可运行对象提交给具有多个线程的执行程序服务,多个线程是否会执行该可运行对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55037266/

相关文章:

java - Hibernate自定义删除查询多行

java - 处理 wsdl 文件时出现问题 :WSDLException. 尝试解析架构时出错

c# - SwitchToThread 与 sleep (1)

android - 条件链单一且可完成

java - Selenium 网格,并行运行时测试在同一线程上开始

java - 使用 ScheduledExecutorService 时在哪里对计划任务执行最终清理

c# - 在 .NET 中查找下一个 TCP 端口的线程安全方式(通过多个进程)

java - 什么会导致UDP数据包在发送到本地主机时被丢弃?

java - 是否有不同的方法来编写此代码,使其不使用循环

java - 同时快速读取/写入 int 数组