Free Online Whiteboard Base64 Converter JSON Utility SmartTool PDF

Category: J2SE Category

What is Flushing in java? 0

What is Flushing in java?

The java.io.Writer.flush method flushes the stream. If the stream has saved any characters from the various write() methods in a buffer, write them immediately to their intended destination. Then, if that destination is another...

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...