Dave Leeds
05/16/2022, 6:46 PMclassifier declaration scope
classifier initialization scope
instance initialization block
I'm hoping for some clarification about which scopes these are referring to. My take is:
class SomeClass {
// classifier declaration scope is here
init {
// instance initialization block is here
}
}
But then I'm not clear about what a classifier initialization scope
is. Can someone help clear this up for me? Thanks!