Computer Science, asked by 123zxc, 1 year ago

how is object declared

Answers

Answered by Avani1024
1
As you know, a class provides the blueprint for objects; you create an object from a class. Each of the following statements taken from the CreateObjectDemoprogram creates an object and assigns it to a variable:

Point originOne = new Point(23, 94); Rectangle rectOne = new Rectangle(originOne, 100, 200); Rectangle rectTwo = new Rectangle(50, 100);

The first line creates an object of the Pointclass, and the second and third lines each create an object of the Rectangle class.

Each of these statements has three parts (discussed in detail below):

Declaration: The code set in bold are all variable declarations that associate a variable name with an object type.

Instantiation: The new keyword is a Java operator that creates the object.

Initialization: The new operator is followed by a call to a constructor, which initializes the new object.

Similar questions