I searched on SO. Saw one that said there are four ways in total.
The first of which is using the new keyword. The rest is more complicated.
But say you wanna construct a String object:
String object1= String("Bob")
If we leave the parameter the blank object will be null.
However the point is: can't we also do it in this way which is way simpler:
String object1="Bob";