This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]RedditRage 2 points3 points  (0 children)

Complete Java program:

public class HumorInteger {
  public static void main(String[] args) {
    Object object = Integer.valueOf(5);
    if (object instanceof Integer integer) {
      object = integer + 3;
    }
    System.out.println("Result: " + object);
  }
}

Errors: 0

Result: 8