JAVA SIMPLE ARCHITECTURE

A SIMPLE ARCHITECTURE TO UNDERSTAND THE JAVA(J2SE) IN 2 MINUTES

class
{    // class block;
      variable(s ); // variables inside the class
      method(s)   // method block
      {
             variable(s ); // variables inside the methods
      }
}

A SIMPLE ARCHITECTURE OF JAVA
(Not the actual architecture but it helps the beginners to under the language better)

  • To access the class,methods,variables the key is OBJECT.

  • The super class of all the classes is OBJECT.

  • We will discuss about accessing and naming methodologies of class,methods,variables in the later posts.

No comments:

Post a Comment