I am new to Java.
I want to ask about object initialization. First, I make a class.
public class A {
....
}
Then at the main class, the A class is instantiated.
A a = new A();
Now, the question is, whether these two codes are the same?
A aa = a;
and
A aa = new A();