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.
所有不可变对象都是单例实例吗?
不。
不可变对象是不可更改的,通常的做法是通过构造函数传递(注入)所有必需的值(即在实例化对象时指定它们),然后在对象的生命周期内外部不可更改。
单例对象是当有一个实例时,该实例可能是不可变的,但很少是。