java——多线程——单例模式的static方法和非static方法是否是线程安全的?

本文探讨了单例模式下静态方法与非静态方法的线程安全问题,并通过代码实例展示了如何理解这些概念。重点讨论了线程安全的基本原理,以及如何在多线程环境下确保数据的一致性和正确性。

  单例模式的static方法和非static方法是否是线程安全的?

  答案是:单例模式的static方法和非static方法是否是线程安全的,与单例模式无关。也就说,如果static方法或者非static方法不是线程安全的,那么不会因为这个类使用了单例模式,而变的安全。

  闲话休说,看代码:
  

import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;

public class TestSingleton {
    public static void main(String[] args) throws Exception {
        ExecutorService pool = Executors.newFixedThreadPool(10);
        for (int j = 0; j < 100000; j++) {
            pool.submit(new Thread() {
                public void run() {

                    Singleton.get().add();
                }
            });
        }
        pool.shutdownNow();
        while (!pool.isTerminated())
            ;
        System.out.println(Singleton.get().getcnt());
    }
}

class Singleton {
    private static Singleton singleton = new Singleton();

    int cnt = 0;

    private Singleton() {}

    public static Singleton get() {
        return singleton;
    }

    public void add() {
        cnt++;
    }

    public int getcnt() {
        return cnt;
    }
}

  上面的运行结果,一般是不会等于100000的,及运行次数。

  相关笔记:

  The heap is where all the objects live and the stacks are where the threads do their work. Each thread has its own stack and can't access each others stacks. Each thread also has a pointer into the code which points to the bit of code they're currently running. 

  When a thread starts running a new method it saves the arguments and local variables in that method on its own stack. Some of these values might be pointers to objects on the heap. If two threads are running the same method at the same time they will both have their code pointers pointing at that method and have their own copies of arguments and local variables on their stacks. They will only interfere with each other if the things on their stacks point to the same objects on the heap. In which case all sorts of things might happen.
Strings are immutable (cannot be changed) so we're safe if this is the only object being "shared".

  So many threads can be running the same method. They might not be running at the same time - it depends how many cores you have on your machine as the JVM maps Java threads to OS threads, which are scheduled onto hardware threads. You therefore have little control over the way these threads interleave without using complex synchronisation mechanisms.

  threads have their own stack so any method argument and local variable will be unique for each thread.

   

  参考链接:

  http://stackoverflow.com/questions/17343157/static-method-behavior-in-multi-threaded-environment-in-java

  

 

转载于:https://www.cnblogs.com/liu-qing/p/4469965.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值