Recently i have come across this statement :
InputStream in = new FileInputStream(Filename);
What does this statement mean ?
In this what does in
refer to.?
Is in
the object of FileInputStream
?
writing the statement : InputStream is = new InputStream();
produces an error b'coz InputStream is an abstract class but then why we have a constructor for this class ?--->InputStream()