现有: int x- reader.read(); 下面哪一项正确?() A、阅读器不是FileReader或者BufferedReader类型B、阅读器可以是FileReader或者BufferedReaderC、阅读器可以是FileReader类型,但不能是BufferedReader类型D、阅读器可以是BufferedReader类型,但不能是FileReader类型
现有: int x- reader.read(); 下面哪一项正确?()
- A、阅读器不是FileReader或者BufferedReader类型
- B、阅读器可以是FileReader或者BufferedReader
- C、阅读器可以是FileReader类型,但不能是BufferedReader类型
- D、阅读器可以是BufferedReader类型,但不能是FileReader类型
相关考题:
有以下程序 include typedef struct { int num;double s; }REC; void funl(REC *x) { x 有以下程序 include<stdio.h> typedef struct { int num;double s; }REC; void funl(REC *x) { x->num=23;x->s=88.5; } void main() { REC a={16,90.0}; fun1(A); printf("%d\n",a.num); } 程序运行后的输出结果是( )。
如下的类定义,括号里应填( )。 class Myclass { public: MyClass(int a =0,int b =0) { X=a; Y=b; void Change ( ) const { X- =10; Y+ =10; public: ( )int X,Y;A.staticB.constC.mutableD.可以不添内容
主调函数中的两个变量a和b,要求调用函数交换a、b的值,返回交换结果,则以下正确的函数是______。A.funa(int*x,int*y) {int*p; *p=*x;*x=*y;*y=*p; }B.funb(int x,int y) {int t; t=x;x:y=y=t;}C.func(int*x,int*y) {*x=*y;*y=*x;}D.fund(int *x,int*y) {*x=*x+*y;*y=*x-*y;*x=*x-*y;}
下列哪个选项不是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 IOExceptionB.public final void writeInt (int V)throws IOExceptionC.public int available() throws IOExceptionD.public void close() throws IOException
有如下类的定义。应在空格处填入的语句是 ( )。 class MyClass { ______________ int x, y; public: MyClass(int a=0,int b=0) { x=a; y=b; } static void change{) { x-=10; y-=10; };A.staticB.constC.mutableD.不需要填入内容
有如下类的定义。空格处的语句是class MyClass{ ______ int x, y;public: MyClass(int a=0, int b=0) { x=a; y=b; } static void change() { x-=10; y-=10; }};A.staticB.constC.privateD.不需要填入内容
请读程序:includefunc(int a,int b) { int c; c=a+b; return c;}main(){ int x=6,y=7, 请读程序: #include<stdio.h> func(int a,int b) { int c; c=a+b; return c; } main(){ int x=6,y=7,z=8,r, r=func((x-,y++,x+y),z-); printf("%d\n",r); } 上面程序的输出结果是_______。A.11B.20C.21D.31
若有定义语句:“int x=10;”,则表达式x-=x+x的值为( )。 A.-20B.-l0C.0 若有定义语句:“int x=10;”,则表达式x-=x+x的值为( )。A.-20B.-l0C.0D.10
有如下类的定义。空格处的语句是 class MyClass { ______int x,y; public: MyClass(int a=0,int b=0) { x=a; y=b; } staticvoidchange() { x-=10; y-=10; } };A.staticB.constC.privateD.不需要填入内容
有以下程序: main() { int n=0,m=l,x=2; if(!n) x-=l: if(!m) x-=2; if(!x) x-=3; printf (" %d\n",x); } 执行后的输出结果是 ______。A.2B.1C.3D.6
下列代码实现从文件file.dat中读出第5个字节到变量c中,横线处应该填入下列项中的______。 import java.io.*; public class exl5 { public static void main(String[] args) { try System.out.println((char)c); catch(Exception e) { e.printStackTrace(); } } }A.FileInputStream in = new FileInputStream("chl/file.dat"); in.skip(4); int c = in.read();B.FileInputStream in = new FileInputStream("chl/file.dat"); in.skip(5); int c = in.read();C.Fi2eInputStream in = new FileInputStream("file.dat"); int c = in.read();D.RandomAccessFile in = new RandomAccessFile ("chi/file. dat "); in.skip (4); int c = in.readByte();
要从文件" file.dat"文件中读出第10个字节到变量C中,下列哪个方法适合? ()A、 FileInputStream in=new FileInputStream("file.dat"); in.skip(9); int c=in.read();B、 FileInputStream in=new FileInputStream("file.dat"); in.skip(10); int c=in.read();C、 FileInputStream in=new FileInputStream("file.dat"); int c=in.read();D、 RandomAccessFile in=new RandomAccessFile("file.dat"); in.skip(9); int c=in.readByte();
现有: int x- reader.read( ); 下面哪一项正确?()A、阅读器不是FileReader或者BufferedReader类型B、阅读器可以是FileReader或者BufferedReaderC、阅读器可以是FileReader类型,但不能是BufferedReader类型D、阅读器可以是BufferedReader类型,但不能是FileReader类型
下列不属于FileInputStream输入流的read()成员函数的是()A、 int read();B、 int read(byte b[]);C、 int read(byte b[],int offset,int len);D、 int read(int line);
单选题下列不属于FileInputStream输入流的read()成员函数的是()A int read();B int read(byte b[]);C int read(byte b[],int offset,int len);D int read(int line);
单选题要从文件" file.dat"文件中读出第10个字节到变量C中,下列哪个方法适合? ()A FileInputStream in=new FileInputStream(file.dat); in.skip(9); int c=in.read();B FileInputStream in=new FileInputStream(file.dat); in.skip(10); int c=in.read();C FileInputStream in=new FileInputStream(file.dat); int c=in.read();D RandomAccessFile in=new RandomAccessFile(file.dat); in.skip(9); int c=in.readByte();
单选题现有: int x- reader.read(); 下面哪一项正确?()A阅读器不是FileReader或者BufferedReader类型B阅读器可以是FileReader或者BufferedReaderC阅读器可以是FileReader类型,但不能是BufferedReader类型D阅读器可以是BufferedReader类型,但不能是FileReader类型