#software-development
Read more stories on Hashnode
Articles with this tag
Introduction Before we understand what is multithreading, lets first understand Thread and Process. Process Process is an instance of a program...
Stream We can consider stream as a pipeline, through which our collection elements passes through. While elements passes through pipelines, it...
Switch Cases ยท Decision Making Statements If then (Simple if) If Condition is true, then if-block will get executed. if(boolean condition){ //Code...
What is Operator? This indicate what actions to perform like addition, subtraction etc. What is Operand: This indicate the items, on which action has...
What is Exception? It's an event, that occurs during the execution of the program. It will disrupt your program normal flow. It creates the...
1. Default Method (Java 8) Issue Before Java8, Interface can have only Abstract method. And all child classes has to provide abstract method...