singleLines.java 380 B

12345678910111213141516171819
  1. public final class Math {
  2. /**
  3. * Don't let anyone instantiate this class.
  4. */
  5. private Math() {}
  6. public class Main {
  7. public static void main(String[] args) {
  8. Apple myApple = new Apple();
  9. if (myApple instanceof Fruit) {
  10. System.out.println("It's true!");
  11. }
  12. }
  13. }
  14. if (this.getClass() != other.getClass())
  15. return false;