<init>
method can be found in stacktrace, for example.
As I understood it represents initialization done in constructor.
If you try to execute
Object.class.getDeclaredMethod("<init>");
You'll get java.lang.NoSuchMethodException
.
What is this method? When was it added to class? (in compilation - execution terms) Is it virtual, can one anyhow override it?