Monday, 9 March 2020

Autoboxing and Unboxing in Java

Autoboxing and Unboxing in JavaHi guys! Welcome you again to brajeshNotes. In today's session , we will talk about what is auto boxing and auto unboxing in java. So lets start without spending too much time 😊 Autoboxing : Process of converting the primitive value into its corresponding wrapper class value is called auto boxing.  For example converting int to Integer class. Java compiler applies auto boxing when a primitive value is : Passed...

Monday, 13 January 2020

Java 8 Functional Interface with examples

Java Functional Interfaces An interface having only single abstract method is called functional interface 😊. You can either use the predefined functional interface provided by Java or create your own functional interface and use it.  If you want to check the predefined functional interfaces which is provided by oracle people..go here predefined functional interfaces ,they all have only one abstract method. That...