What are the super most classes for all the streams?
Answer Posted / glibwaresoftsolutions
ByteStream classes and CharacterStream classes are the two categories into which all stream classes can be separated. InputStream and OutputStream classes are subdivided from the ByteStream classes. Additionally, CharacterStream classes are separated into Writer and Reader classes. Java.io.InputStream is the SuperMost class for all input stream classes, while java.io.OutPutStream is the SuperMost class for all output stream classes. Java.io is also the super-most class among all the reader classes.Reader, and java.io.Writer for all writer classes.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How do you sort data in java?
What is difference between add() and addelement() in vector?
Write a program to check string is palindrome without using loop?
Why do we need hashset in java?
Does java list allow null?
How to create an immutable class?
Explain the scope or life time of class variables or static variables?
Which class cannot be a subclass in java?
What do you mean by thread safe?
What is meant by method?
What are disadvantages of java?
Can a constructor have different name than a class name in java?
When do we use synchronized blocks and advantages of using synchronized blocks?
What is the difference between an object-oriented programming language and object-based programming language?
Program to Find the second largest element in an array.