What does {{...}} block mean in the following code?
class X {
private Y var1;
private X() {
Z context = new Z(new SystemThreadPool()) {{
var1 = new Y();
}};
}
}
|
What does {{...}} block mean in the following code?
| |||||||||
feedback
|
|
It's called double curly brace initialization. It means you're creating an anonymous subclass and the code within the double braces is basically a constructor. It's often used to add contents to collections because Java's syntax for creating what are essentially collection constants is somewhat awkward. So you might do:
instead of:
I actually don't like that and prefer to do this:
So it doesn't make much sense in that case whereas it does for, say, Maps, which don't have a convenient helper. | |||||||||
feedback
|
|
The "outer" braces mean that you're making an anonymous subclass, the second braces are the object initializer. The initializer is run before the class' constructor, but after any Consider this class:
It could be rewritten as:
If the initializer can throw a checked exception, all constructors must declare they can throw it. | |||
|
feedback
|
|
You are creating an anonymous class and using the class Instance initializer idiom, like this:
| |||
|
feedback
|
|
It's called Object Initialization which means you're a assigning a value to Y of Z instance. | |||
feedback
|