mirror of
https://github.com/tiennm99/lombok.git
synced 2026-06-09 16:14:33 +00:00
26 lines
588 B
Plaintext
26 lines
588 B
Plaintext
public class GetterLazyExample {
|
|
private int[] $lombok$lazy1v;
|
|
private volatile boolean $lombok$lazy1i;
|
|
private final Object $lombok$lazyLock = new Object[0];
|
|
|
|
public int[] 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 int[] expensive() {
|
|
double[] result = new double[1000000];
|
|
for (int i = 0; i < result.length; i++) {
|
|
result[i] = Math.asin(i);
|
|
}
|
|
return result;
|
|
}
|
|
}
|