Java   View all facts   Glossary   Help
syntactic unit > symbol > operator > new operator
Next operatorpostfix operator    Upoperator    Previous operatorlogical operator   

new operator comparison table
Subject cause have example has definition have purpose see also is a synonym of is a kind of is partitioned into is an instance of
operator  A symbol used for arithmetic and logical operationsto perform a simple function of 1 to 3 arguments  symbolarithmetic operator , relational operator, logical operator, bitwise operator, logical operator, assignment operator 
new operator
  1. a new instance of the given class is created
  2. memory is allocated for it
  3. a constructor is called
Rectangle rect = new Rectangle();An operator that creates a new object (allocates space for it).to create a new objectnewcreation operator  operator

Next operatorpostfix operator    Upoperator    Previous operatorlogical operator