“Java Private No-Arg Constructor” Ответ

Java Private No-Arg Constructor

class Main {

  int i;

  // constructor with no parameter
  private Main() {
    i = 15;
    System.out.println("Constructor called \n");
  }

  public static void main(String[] args) {

    // calling the constructor without any parameter
    Main obj = new Main();
    System.out.println("Value of i: " + obj.i);
  }
}
Outrageous Ostrich

Java Private No-Arg Constructor

class Main {

  int i;

  // constructor with no parameter
  private Main() {
    i = 5;
    System.out.println("Constructor is called");
  }

  public static void main(String[] args) {

    // calling the constructor without any parameter
    Main obj = new Main();
    System.out.println("Value of i: " + obj.i);
  }
}
SAMER SAEID

Ответы похожие на “Java Private No-Arg Constructor”

Вопросы похожие на “Java Private No-Arg Constructor”

Больше похожих ответов на “Java Private No-Arg Constructor” по Java

Смотреть популярные ответы по языку

Смотреть другие языки программирования