[单项选择题] 顺序执行下列程序语句后,则b的值是( )。 String a="Hello"; String b=a. substring(0,2);
A."Hello"
B."hello"
C."He"
D.null
[单项选择题] 顺序执行下列程序语句后,则b的值是( )。 String a="Hello"; String b=a. substring(0,2);
A."Hello"
B."hello"
C."He"
D.null
C
String类的substring()方法用于从一个串中取子串。其定义为: public String substring(int beginIndex,int endIndex)该子字符串从指定的beginIndex处开始,一直到索引endIndex-1处的字符。因此,该子字符串的长度为endIndex-beginIndex。本题中起始索引为0,结束索引为1,所以返回结果为"He"。
VIP截止日期:2025-01-02 13:34:26
←请使用支付宝扫码支付VIP截止日期:2025-01-02 13:34:26
←请使用微信扫码支付