Category: Programming

18
Jan
2016

Java Tut – Polymorphism

Polymorphism the most common use of OOP occurs when a parent class reference is used to refer…

18
Jan
2016

Java Tut – Method Overriding

If subclass has the same method s declared in the parent class, it is known as method…

18
Jan
2016

Java Tut – inheritance

The classs which inherits the properties of other is known as subclass(derived class,child class etc.) and the…

17
Jan
2016

Java Tut – Nested or Inner Class

Syntax: class Java_Outer_Class{ //code class Java_Inner_Class_Or_Nested Class{ //code } } 1) Nested classes represents a special type…

17
Jan
2016

Difference Between Method Overloading and Method Overriding in Java

Method Overloading: 1) Performed within class 2) Parameters must be different 3)Is the example of compile time…

17
Jan
2016

Java Tut – Exception Handling

The exeption handling in java is one of the powerful mechanism to handle the runtime errors so…