AF
1. If there is a superclass, initialize it first.Ок. делаю файл, в нем
2. Static variable declarations and static initializers in the order they appear in the file.
3. Instance variable declarations and instance initializers in the order they appear in the file.
4. The constructor.
C ext BПорядок вызова:
B ext A
A
new C()
static{} A
static{} B
static{} C
{} A
A()
{} B
B()
{} C
C()
Получается, что на самом деле
2. Static variable declarations and static initializers in the order they appear in the class.Так?