Home  >  Article  >  Java  >  When are builders called?

When are builders called?

DDD
DDDOriginal
2024-09-18 11:33:10826browse
  • When the object of a subclass is created, the constructor of the superclass is executed first.

  • In a class hierarchy, constructors are executed in order of derivation, from superclass to subclass.

  • The super() function must be the first statement executed in the constructor of a subclass.

  • The execution order of the constructors is the same, regardless of whether super() is used or not.

  • If super() is not used, the default constructor of the superclass will be executed.

Quando os construtores são chamados?

  • Constructors are executed in derivation order.

  • The superclass must complete its execution before the subclass, as it has no knowledge of the subclasses.

  • Superclass initialization can be a prerequisite for subclass initialization, justifying the order of execution.

The above is the detailed content of When are builders called?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn