Published News » Web Design & Development

Java
Encapsulation is a programming concept that a language should support in order to separate an object's state from its behavior. This is typically facilitated by means of hiding an object's data representing its state from modification by external components.   Read More.....
Java
Objects and classes are a fundamental part of object-orientated programming, and therefore Java. A class contains both data (referred to as attributes), and executable code (referred to as methods). In the previous tutorial, we created a class that contained a single method ' main '. When the class was executed, the main method was called, and the application ran as a normal program.  Read More.....
Java
In this section, we discuss the use of the static keyword to create fields and methods that belong to the class, rather than to an instance of the class  Read More.....
Java
A java constructor has the same name as the name of the class to which it belongs. Constructor’s syntax does not include a return type, since constructors never return a value.

Constructors may include parameters of various types. When the constructor is invoked using the new operator, the types must match those that are specified in the constructor definition.

  Read More.....
Java
Java was developed by taking the best points from other programming languages, primarily C and C++. Java therefore utilises algorithms and methodologies that are already proven.   Read More.....
Java
At the heart of the Java platform lies the Java Virtual Machine, or JVM. Most programming languages compile source code directly into machine code, suitable for execution on a particular microprocessor architecture. The difference with Java is that it uses bytecode - a special type of machine code.

  Read More.....
Java
In this tutorials you will learn about the Java garbage collection heap  Read More.....
Java
Abstraction refers to the ability to make a class abstract in OOP. An abstract class is one that cannot be instantiated. All other functionality of the class still exists, and its fields, methods, and constructors are all accessed in the same manner. You just cannot create an instance of the abstract class.  Read More.....
Want to submit free articles? Submit Articles to top ezine articles directory Sooper Articles