下列哪条指令可用于创建具有10行20列的文本域?
A: new TextArea(20,10)
B: new TextArea(10,20)
C: new TextArea(new Rows(10), new Colums(20)
D: new TextArea(200)
A: new TextArea(20,10)
B: new TextArea(10,20)
C: new TextArea(new Rows(10), new Colums(20)
D: new TextArea(200)
举一反三
- 声明一个10行、每行20个字符的多行文本框区域,以下哪句代码正确?( )。 A: <;textarea col=”10” row=”20”>;<;/textarea>; B: <;textarea col=”20” row=”10”>;<;/textarea>; C: <;textarea cols=”10” rows=”20”>;<;/textarea>; D: <;textarea cols=”20” rows=”10”>;<;/textarea>;
- 下列创建一个标识有“关闭”按钮的语句是______。 A: TextField b=new TextField("关闭"); B: TextArea b=new TextArea("关闭"); C: Button b=new Button("关闭"); D: Checkbox b=new Cheekbox("关闭");
- 假定一个10行20列的二维数组,以下哪个定义语句是正确的( )。 A: int[] arr=new int[10,20] B: int[] arr= int new [10,20] C: int[,] arr=new int[10,20] D: int[,] arr=new int[10;20]
- 下面数组创建不正确的是: A: int a[10][10]=new int[][]; B: int []a[]=new int[10][10]; C: int [][]a=new int[10][10]; D: int a[][]=new int[10][10];
- 在创建数组时,下列创建的方法中合法的是( )。 A: int a[ ] [ ]=new a[10][5] B: int a[]=new int[10 ] C: int [ ]a=new a[10 ] D: int a[]=new a[10]