is System.in an object reference of InputStream class?

若如初见. 提交于 2020-11-29 03:59:28

问题


InputStream is an Abstract class.Then how are we able to access System.in.And moreover int read() is an abstract method in InputStream class.Then how are we able to access System.in.read() method if read() is an abstract method. Like

int a=System.in.read();
System.out.println((char)a); 

回答1:


I suggest you to read more about abstraction and inheritance methods in Java.

If you extend an abstract class, you have to implement its abstract methods. This way, you provide an implementation for it, which can be called by consumers.

System.in is an instance of a class which extends InputStream, not of InputStream directly.




回答2:


is System.in an object reference of InputStream class?

yes!, it is declared/documented in the System class:

/**
 * The "standard" input stream. This stream is already
 * open and ready to supply input data. Typically this stream
 * corresponds to keyboard input or another input source specified by
 * the host environment or user.
 */
public final static InputStream in = null;

but at runtime is a reference to a BufferedInputStream class

so ou are not instantiating an abstract class




回答3:


InputStream is an abstract class which cannot be instantiated directly. System.in refers to the object of type InputStream which means that System.in refers to the object of that class which extends the InputStream class.

For example

abstract class IAmAbstract{
// ...
}

class IAmNotAbstract extends IAmAbstract{
// ...
}

Of course, the following statement is correct:

IAmNotAbstract obj = new IAmNotAbstract();

As well as this statement is also correct:

IAmAbstract obj = new IAmNotAbstract();

So, any object of subclass of InputStream is also a type of InputStream class and subclass itself.



来源:https://stackoverflow.com/questions/45370704/is-system-in-an-object-reference-of-inputstream-class

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!