Fields Declaration :

We can Declare the instance variable exactly the same way as we declare local variables.

class Rectangle
{
int length;
int height;
}

Note: These variables are only declared and therefore no storage space has been created in the memory.Instance variables are also known as member variables.

Leave a comment