OnJava8-Examples/lowlevel/UnsafeReturn.java

22 lines
554 B
Java
Raw Permalink Normal View History

2017-01-15 16:00:44 -08:00
// lowlevel/UnsafeReturn.java
// (c)2021 MindView LLC: see Copyright.txt
2017-01-15 16:00:44 -08:00
// We make no guarantees that this code is fit for any purpose.
// Visit http://OnJava8.com for more book information.
import java.util.function.*;
import java.util.concurrent.*;
public class UnsafeReturn extends IntTestable {
private int i = 0;
public int getAsInt() { return i; }
@Override
2017-01-15 16:00:44 -08:00
public synchronized void evenIncrement() {
i++; i++;
}
public static void main(String[] args) {
Atomicity.test(new UnsafeReturn());
}
}
/* Output:
failed with: 39
2017-01-15 16:00:44 -08:00
*/