fork download
  1. class Ideone {
  2. public static void main(String[] args) {
  3. boolean b1 = true;
  4. Boolean booleanObject = b1;
  5. boolean b2 = booleanObject;
  6. System.out.println(b1);
  7. System.out.println(booleanObject);
  8. System.out.println(b2);
  9. }
  10. }
  11.  
Success #stdin #stdout 0.06s 32564KB
stdin
Standard input is empty
stdout
true
true
true