Files
lombok/usage_examples/GetterLazyExample_post.jpage
T
peichhorn 917518bbea fixed type mismatch in lazy getter example (issue 223)
note: this example shows how lazy getter would work once issue 160 is no more
2011-06-22 09:52:00 +02:00

26 lines
597 B
Plaintext

public class GetterLazyExample {
private double[] $lombok$lazy1v;
private volatile boolean $lombok$lazy1i;
private final Object $lombok$lazyLock = new Object[0];
public double[] getCached() {
if (!this.$lombok$lazy1i) {
synchronized (this.$lombok$lazyLock) {
if (!this.$lombok$lazy1i) {
this.$lombok$lazy1v = expensive();
this.$lombok$lazy1i = true;
}
}
}
return this.$lombok$lazy1v;
}
private double[] expensive() {
double[] result = new double[1000000];
for (int i = 0; i < result.length; i++) {
result[i] = Math.asin(i);
}
return result;
}
}