Tag: programming
Method overloading in Java
"Method overloading is a feature of Java in which a class has more than one method of the same name and their parameters are different."
In other words, we...
Exception Handling In Java
Exception handling is one of the vital features in java programming, which deals with a run-time error during an execution of a program, and the program’s normal flow disrupts. As we all...
Operator overloading in C++
Introduction:
Operator overloading is one of the best features of C++. By overloading the operators, we can give additional meaning to the operators like +-*/=.,= etc., which by default...
Templates in C++
Templates are an interesting feature of C++. It is used for generic Programming. Generic Programming is an approach of programming where generic types are used as parameters in algorithms to work for...
Inline Functions in C++
Out of several exciting concepts of C++, the inline functions can prove to be pretty useful when it comes to the performance of a program. Before making a function inline, it is...