java前辈帮忙看下
publicclassLastIndexOf{publicintlastIndexOf(intch,intfromIndex){StringstrCom="abcdefg...
public class LastIndexOf {
public int lastIndexOf(int ch,int fromIndex){
String strCom="abcdefg gfdecba";
int index = strCom.indexOf(ch, fromIndex);
return index;
}
public static void main(String[] args) {
String strCom= new String();
int i=strCom.indexOf("a", 5);
System.out.println(i);
}
}
帮忙修改下运算结果是0。新手不太懂。 展开
public int lastIndexOf(int ch,int fromIndex){
String strCom="abcdefg gfdecba";
int index = strCom.indexOf(ch, fromIndex);
return index;
}
public static void main(String[] args) {
String strCom= new String();
int i=strCom.indexOf("a", 5);
System.out.println(i);
}
}
帮忙修改下运算结果是0。新手不太懂。 展开
3个回答
展开全部
public class LastIndexOf {
public int lastIndexOf(int ch,int fromIndex){
String strCom="abcdefg gfdecba";
int index = strCom.indexOf(ch, fromIndex);
return index;
}
public static void main(String[] args) {
LastIndexOf l = new LastIndexOf();
System.out.println(l.lastIndexOf('a',5));
}
}
public int lastIndexOf(int ch,int fromIndex){
String strCom="abcdefg gfdecba";
int index = strCom.indexOf(ch, fromIndex);
return index;
}
public static void main(String[] args) {
LastIndexOf l = new LastIndexOf();
System.out.println(l.lastIndexOf('a',5));
}
}
展开全部
public class LastIndexOf {
public int lastIndexOf(int ch,int fromIndex){
return 0;
}
public static void main(String[] args) {
String strCom= new String();
int i=strCom.indexOf("a", 5);
System.out.println(i);
}
}
这不就行了?
public int lastIndexOf(int ch,int fromIndex){
return 0;
}
public static void main(String[] args) {
String strCom= new String();
int i=strCom.indexOf("a", 5);
System.out.println(i);
}
}
这不就行了?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
strCom没赋值,为空
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询