In Java, is there a way to separate the steps that occur when an object is created:
- memory allocation
- building an object
In other words, are there high-level constructors (perhaps using refection?) That accurately display the bytecode instructions new (memory allocation) and invokespecial (building an object).
No specific use, more like curiosity.
source share