Posts tagged as:

OOPS

Java Programming

Method Overriding in Java

Method Overriding happens when the method (function) having the same signature as that of the base class overrides the original method. This makes it possible for the method of the derived class to be used and not the base class.

Java Programming

Method Overloading in Java

Method Overloading happens when their exists methods (functions) having the same name but different signatures.

C++ Programming Cheet Sheets

C++ Programming Cheat Sheets will help you learn the finer nuances of programming and the best practices.

.Net Programming

Default & Parametrized Constructors

Default Constructor is invoked every time an object of a class is created. Parametrized Constructor is invoked when a constructor’s signature has arguments. i.e it accepts parameters and is invoked explicitly.

C++ Programming

Accessing Private members using Friend Function of a different class

Accessing Private data members of a class from a different class’s member function using Friend Function

C++ Programming

Accessing Private members using a normal Friend Function

Accessing data members of a Private Class using a normal function outside the scope of the class by making it a friend function.


WordPress - Vaibhav Kanwal