1String str = new String("");
2String str2 = "";
3
4They both immutable and they save in different
5memory location. String objects created without
6the use of new keyword are stored in the
7String Constant Pool part of the heap.
8It doesn't create the same string object
9if there is already string constant in the pool.
10