代码
提交代码
public class StringMethod2 { public static void main(String[] args) { String str = "I love Java"; int i = str.indexOf('E'); System.out.println(i); } }
运行结果