Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在单例类中有一个 org.apache.log4j.Logger 字段可以吗?由于在多个线程之间共享它可能是任何并发问题吗?
不,不会有任何问题,因为它是线程安全的(即,如果多个线程同时访问它,它不会中断)。
见http://logging.apache.org/log4j/1.2/faq.html#a1.7
不,一个 Logger 对象可以被多个线程使用,你遇到什么问题了吗?