What is Implicit constructors on Java

前端 未结 2 2033
囚心锁ツ
囚心锁ツ 2020-12-06 18:16

Is it mandatory to call base class constructor in Java? In C++ it was optional, so I am asking this.

When I extend ArrayAdapter, I get this error:

2条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-06 18:29

    It's not necessary to call the no-args constructor of super class. If you want to call a constructor with args, user super keyword like show below:

    super(arg1, ...);
    

提交回复
热议问题