|
What this is
Other links
The source code
class Example {
public static final Example A = new Example("A1", "A2");
public static final Example B = Example.getExample("B1", "B2");
public static final Example C;
public static final Example D;
static {
C = new Example("C1", "C2");
D = Example.getExample("D1", "D2");
}
public Example(String arg1, String arg2) {
}
public static Example getExample(String arg1, String arg2) {
return new Example(arg1, arg2);
}
}
|
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.