New
From Abap2Java
[edit]
ABAP
Translation:
CREATE OBJECT
[edit]
Java
The keyword new instantiates an object of the given class by calling its constructor.
Vector v = new Vector();
See also
class, constructor
Translation:
CREATE OBJECT
The keyword new instantiates an object of the given class by calling its constructor.
Vector v = new Vector();
See also
class, constructor