0

Java. I have found this code in my book about Spring Framework. What does it mean?:

static {
   instance = new Instance();
}

1 Answers1

1

This create statically a new instance of the object. At class level

Filippo Fratoni
  • 379
  • 2
  • 7