• input = new TextField(10); 
  • creates a TextField object (10 characters long) using the new operator, and assigns it to the reference input (a name that we declared would refer to an object of type TextField).
  • NOTE: Declaring an object indicates that we want a certain name to refer to a certain type of object.
  • The object is not created until we apply the new operator.