Free Online Whiteboard Base64 Converter JSON Utility SmartTool PDF

Category: Core Java

Are there any other ‘marker’ interfaces? 0

Are there any other ‘marker’ interfaces?

The marker interface pattern is a design pattern in computer science, used with languages that provide run-time type information about objects. It provides a means to associate metadata with a class where the language...

What is Boxing & AutoBoxing? 0

What is Boxing & AutoBoxing?

Java Uses primitive types such as byte,short,int,long,float,double,char and boolean, to hold the basic data type supported by the language. And thus,the primitive types are not part of the Object hierarchy, and they do not...

What is For-Each Loop? 0

What is For-Each Loop?

The For-Each Version of the for Loop : It is a new and second form of for loop. A for-each stype loop is designed to cycle through a collection of objects, such as an...

What is Console class? 0

What is Console class?

– JavaSE 6 adds the Console class. It is used to read from and write to the console, if one exists. – It implements the Flushable interface. – Console is primarily a convenience class...

What is Scanner class? 0

What is Scanner class?

Scanner is a class in java.util package used for obtaining the input of the primitive types like int, double etc. and strings. It is the easiest way to read input in a Java program,...