回到首页
个人中心
反馈问题
注册登录
下载APP
代码
提交代码
public class StringMethod2 { public static void main(String[] args) { String str = "I love Java"; int i = str.indexOf('E'); System.out.println(i); } }
运行结果