以下哪个方法用来从字符串中获取一个字符。 ( )
A: indexOf(String str)
B: substring(int beginIndex, int endIndex)
C: concat(String str)
D: charAt(int index)
A: indexOf(String str)
B: substring(int beginIndex, int endIndex)
C: concat(String str)
D: charAt(int index)
举一反三
- 以下哪个方法用来从字符串中获取一个字符? A: indexOf(String str) B: split(String str,char ch) C: concat(String str) D: charAt(int index)
- 以下关于String类的常见操作中,哪个是方法会返回指定字符ch在字符串中最后一次出现位置的索引() A: int indexOf(int ch) B: int lastIndexOf(int ch) C: int indexOf(String str) D: int lastIndexOf(String str)
- 下列方法中,( )用于实现获取字符在某个字符串中第一次出现的索引。 A: char charAt(int index) B: int lastIndexOf(int ch) C: boolean endsWith(String suffix) D: int indexOf(int ch)
- 从一个字符串中取出指定位置的字符,采用String类中的()方法。 A: charAt() B: endsWith() C: A、charAt()B、endsWith()C、indexOf()D、substring() D: indexOf()
- String类的public char charAt(int index)方法可以得到当前字符串index位置上的一个字符。编写程序使用该方法得到一个字符串中的第一个和最后一个字符