The new keyword is used to create a new instance of a class.
String sName = new String(); Float fVal = new Float(0.15);
The argument following the new keyword must be a class name followed by a series of constructor arguments in required parentheses.
The collection of arguments must match the signature of a constructor for the class.
The type of the variable on the left side of the = must be assignment-compatible with the class or interface being instantiated.
None.