New

From Abap2Java

Jump to: navigation, search

ABAP

Translation:
CREATE OBJECT

Java

The keyword new instantiates an object of the given class by calling its constructor.

Vector v = new Vector();

See also
class, constructor

Personal tools