Friday, June 18, 2010

Introduction to OOPS

Object-Oriented Programming System is a method of programming, in which programs are coded using well-built objects and inter-relating them. There are many advantages of the OOP System:-
  • Modularity of the program:- The programs created using object-oriented programming are modular, that means that they have different modules for different tasks in the form of functions.
  • Re-usability of code:- The code is always reusable, as the same modules can be called from time to time instead of writing them over and over again.
  • Advantages over procedural programming:- In procedural programming the code is never reusable, and the programming is not modular.
About the Java Programming Language
The Java programming language has been developed by Sun Microsystems, and was
primarily known as Oak. Before, Java was intended for web applets only, but now it
has expanded into a full-fledged Object-Oriented language, and a replacement for C++,
as it does not have most of the flaws that c++ has, like manual garbage memory
De-allocation. Thus, here we start our journey with Java(Written with C++).

Coming up now...
Identifiers, Keywords, and Types

No comments:

Post a Comment