标签:改变 选择 char val abd imp for def 作用
共40道选择题,每题2.5分。31-40是多选题,多选题有错则全错,全对才满分.
c
a) 将整数变成字符串
b) 将字符串变成字符数组 char[ ]
c) 将字符串变成字节数组byte[ ]
d) 获取中字符串中字符的个数
a) 1,1
b) 0,6
c) 0,0
d) 1,6
public static void main(String[] args){
String s1 = “abc”;
String s2 = “xyz”;
show(s1,s2);
System.out.println(s1+”-----”+s2);//
}
static void show(String s1,String s2){
s1 = s2+s1+”Q”;
s2 = “W”+s1;
}
a) abc-----xyz
b) xyzabcQ-----xyzWabc
c) xyzabcQ---- xyzabcQWabc
d) xyzQ----Wabc
a) 字符串是基本数据类型
b) 字符串值存储在栈内存中
c) 字符串值初始化后可以被改变
d) 字符串值一旦初始化就不会被改变
a) 返回指定索引处的字符
b) 返回指定索引出的字符串
c) 返回指定字符的索引
d) 返回指定字符串的索引
a) toString()
b) toCharArray()
c) toUpperCase()
d) toLowerCase()
a) 10个
b) 12个
c) 14个
d) 16个
a) length()
b) delete()
c) append()
d) toString()
a) StringBuffer和StringBuilder的方法不同
b) StringBuffer和StringBuilder都是线程安全的
c) StringBuffer是线程安全的,StringBuilder不是线程安全的
d) StringBuffer不是线程安全的,StringBuilder是线程安全的
a) System.out.println(“abc”.equals(“Abc”));
b) System.out.println(“”.equals(null));
c) System.out.println(“abc”==”ab”+”c”);
d) System.out.println(“”.equalsIgnoreCase(null));
a) 2
b) 5
c) -1
d) 7
a) indexOf()
b) substring()
c) split()
d) trim()
a) replace()
b) toString()
c) substr()
d) substring()
String str = “abcdefg”;
str.substring(0,2);
System.out.println(str);
a) ab
b) abc
c) abcdefg 字符串一旦创建就不可改变
d) 出现下标越界异常
public static void main(String[] args){
StringBuffer sb = new StringBuffer();
sb.append("qq").append("ww"); //qqwwss
show(sb,"ss"); //调用方法
System.out.println(sb.length());
}
static void show(StringBuffer sb,String str){
sb.append(str);
}
a) 4
b) 2
c) 6
d) 0
String str1= “1”, str2=”2”;
if(str1==str2)
System.out.println(“ABC”);
else if(str1<str2)
System.out.println(“DEF”);
else
System.out.println(“GHJ”);
a) ABC
b) DEF
c) GHJ
d) 编译失败
a) 将小数转换成整数
b) 将数字格式的字符串转成整数
c) parseInt()方法永远不会抛出异常
d) 将单个字符转成整数
a) toBinaryString()
b) toHexString()
c) intValue()
d) toOctalString()
Integer x = 3 ;
x = x + 3;
System.out.println(x);
a) 编译失败
b) x3
c) 6
d) Null
a) 获取当前的操作系统的属性
b) 获取当前JVM的属性
c) 获取指定键指示的操作系统属性
d) 获取指定键指示的JVM的属性
a) Math.ceil()
b) Math.floor()
c) Math.pow()
d) Math.abs()
a) 返回一个不确定的整数
b) 返回0或是1
c) 返回一个随机的double类型数,该数大于等于0.0小于1.0
d) 返回一个随机的int类型数,该数大于等于0.0小于1.0
a) -13
b) -11
c) -12
d) -12.0
a) 15.0
b) 15
c) 16.0
d) 16.6
a) nextDouble()
b) nextFloat()
c) nextInt(100)
d) nextInt()
a) getSeconds()
b) getTime()
c) getDay()
d) getDate()
a) Date类中的构造方法
b) Date类中的setTime方法
c) Date类中的getTime方法
d) SimpleDateFormat类中的format方法
a) 将毫秒值转成日期对象
b) 格式化日期对象
c) 将字符串转成日期对象
d) 将日期对象转成字符串
a) 年中的某一天
b) 月中的某一天
c) 星期中的某一天
d) 月中的最后一天
String s1 = “abc”;
String s2 = new String(“abc”);
System.out.println(s1==s2);
String s3 = “你好吗”;
String s4 =”你”;
String s5 =”好吗”;
System.out.println(s3==(s4+s5))
a) true true
b) false true
c) true flase
d) false false
a) 向缓冲区追加字符数据
b) 将缓冲区中的字符串删除
c) append()方法返回值类型是StringBuffer类型
d) append()方法返回值类型是String类型
a) 切割字符串
b) 返回一个新的字符串
c) 返回一个新的字符串数组
d) 此方法没有返回值
a) 字符串缓冲区是为了提高字符串的操作效率
b) StringBuilder是线程安全的
c) StringBuffer是线程安全的
d) String类的valueOf()方法可以将任意类型变成字符串
a) 返回指定字符在字符串中第一次出现的索引
b) 返回指定子字符串在字符串第一次出现的索引
c) 返回指定字符在字符串中最后一次出现的索引
d) 返回指定子字符串在此字符串最后一次出现的索引
a) equals()方式是覆盖Object类中的equals()方法
b) equals()比较字符串中的内容,区分大小写
c) equals()方法的的返回值是布尔类型
d) 以上说法都不正确
a) 静态常量
b) 被final修饰
c) Math.PI每次运行结果不一样
d) 以上的说法都正确
a) Date d = new Date(); d.getTime();
b) System.currentTimeMillis();
c) Calendar中的getTime();
d) DateFormat中的getTime()
a) null是常量
b) “”是字符串对象
c) null可以调用方法
d) “”可以调用方法
a) 获取字符串中的一部分
b) 返回新的字符串
c) 返回新的字符串数组
d) 此方法没有返回值
a) 创建了一个字符串对象
b) 创建了两个对象,一个是new String( )对象,一个是”abc”对象
c) str.equals(“abc”);将返回true
d) str.equals(“abc”);将返回false
标签:改变 选择 char val abd imp for def 作用
原文地址:https://www.cnblogs.com/xiaoxiao1016/p/9809821.html