Quotes About Initialization
Good uses of volatile variables include ensuring the visibility of their own state, that of the object they refer to, or indicating that an important lifecycle event (such as initialization or shutdown) has occurred.
~ Brian Goetz
BazillionQuotes.com
With the exception of immutable objects, it is not safe to use an object that has been initialized by another thread unless the publication happens-before the consuming thread uses it.
~ Brian Goetz
BazillionQuotes.com
Technically, instance creation first triggers the __new__ method, which creates and returns the new instance object, which is then passed into __init__ for initialization.
~ Unknown
BazillionQuotes.com
