os :windows7 x64
jdk:jdk-8u131-windows-x64
ide:Eclipse Oxygen Release (4.7.0)
code:
package jizuiku.t00; public class Dome3 { public static void main(String[] args) { // 索引值 // 10 // 11 // 12 // 13 // 0123456789 String str = "abc01234543210cba"; char ch = ‘0‘; System.out.println(str.lastIndexOf(ch)); //这个是反向查找,从结尾处开始找,所以先找到的是13处的‘0‘ } }
result:
Java优秀,值得学习。
学习资源:API手册+Java源码。
时间: 2024-10-12 16:26:22