
object or construct which create first?

A constructor is always created first.
Here is an example:
class Example
{
Example(String st){
System.out.println(st);
}
public static void main(String[] args)
{
Example ex=new Example1("Hello");
}
}
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.