新手java问题,(s.toSplit());出错指The method toSplit() is undefined for the type String
publicclassSpilt{publicStringtoSplit(Stringstr){String[]strs=str.split("");if(strs!=n...
public class Spilt {
public String toSplit(String str){
String [] strs = str.split(" ");
if(strs != null)
return strs[0] + " " + strs[1];
return "null";
}
public static void main(String [] args){
String s = "I come from China.";
System.out.print(s.toSplit());
}
} 展开
public String toSplit(String str){
String [] strs = str.split(" ");
if(strs != null)
return strs[0] + " " + strs[1];
return "null";
}
public static void main(String [] args){
String s = "I come from China.";
System.out.print(s.toSplit());
}
} 展开
4个回答
展开全部
你这个 String s 只是一个字符串,String下边又没有 toSplit()这个方法 当然会报错了。调用toSplit()方法 需要先实例化Split类 再用实例化的对象去调用toSplit()方法。还有需要注意:调用的时候不要写错了哦,你这个类的名字 是Spilt 方法名字是toSplit() Spilt和Split
追问
谢谢谢谢 我也发现了这个打错了方法名的问题
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
toSplit方法是类中的一个方法,必须要实例化一个对象才行;
或者是你用static修饰方法,让它成为一个静态方法。
或者是你用static修饰方法,让它成为一个静态方法。
追问
就是说要new一个string吗??
追答
要new 一个Split,静态方法是不能直接调用非静态方法的,
一个常用工具方法的话可以写为静态方法,静态方法可以直接访问静态方法
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
public class Spilt {
public static String toSplit(String str){
String [] strs = str.split(" ");
if(strs != null)
return strs[0] + " " + strs[1];
return "null";
}
public static void main(String [] args){
String s = "I come from China.";
System.out.print(toSplit(s));
}
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
System.out.print(toSplit(s));
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询