下列哪个选项不是InputStream类中的方法?A.public abstract int read()throws IOExceptionB.public final void writeInt (int v)throws IOExceptionC.public void close()throws IOExceptionD.public int available() throws IOException

下列哪个选项不是InputStream类中的方法?

A.public abstract int read()throws IOException

B.public final void writeInt (int v)throws IOException

C.public void close()throws IOException

D.public int available() throws IOException


相关考题:

下面哪个不是InputStream类中的方法?A.int read(byte[DB.void flush()C.void close()D.int available()

下列______选项不是InputStream类中的方法。A.public abstract int read() throws IOExceptionB.public final void writeInt (int V)throws IOExceptionC.public int available() throws IOExceptionD.public void close() throws IOException

下列( )选项不是InputStream类中的方法。A.public abstract int read( ) throws IOExceptionB.public final void writeInt (int v) throws IOExceptionC.public void close( )throws IOExceptionD.public int available( )throws IOException

以下选项中,哪个是FileOutputStream的父类? A.FileB.FileOutputC.OutputStreamD.InputStream

下列选项中,哪个是FileWriter类中read()方法读取到流末尾的返回值?() A.0B.-1C.1D.无返回值

下面哪个不是InputStream类中的方法?A.int read(byte[])B.void flush()C.void close()D.int available()

下列哪个选项不是InputStream类中的方法?A.public abstract int read( )throws IOExceptionB.public final void writeInt(int v)throws IOExceptionC.pubfic void close( )throws IOExceptionD.pubfic int available( )throws IOExcepfion

下列哪个选项不是InputStream类中的方法? ( )A.public abstract int read()throws IOExceptionB.public final void writeInt(int v)throws IOExceptionC.public void close()throws IOExceptionD.public int available()throws IOException

下列哪个叙述是正确的?A.final 类可以有子类。B.abstract类中只可以有abstract方法。C.abstract类中可以有非abstract方法,但该方法不可以用final修饰。D.不可以同时用final和abstract修饰同一个方法。