All Questions
Tagged with lazy-initializationinitialization
2 questions
2votes
1answer
118views
Modelling seats of a table in a social game
Assume we want to model a table where players can sit down to get together to play a game (card games, dice games, ...). Assume a few properties associated with each seat class Seat { public int ...
3votes
1answer
1kviews
Why does this static field always get initialized over-eagerly?
I am looking at this excellent article from Jon Skeet. While executing the demo code, Jon Skeet says that we can expect three different kinds of behaviours. To quote that article: The runtime could ...