本帖最后由 Friendy89 于 2013-4-11 21:55 编辑
class StringMethodDemo
{
public static void method_is()
{
String str="ArrayDemo.java";
//判断文件名中是否是Array单词开头。
sop(str.startsWith("Array"));
//判断文件名称是否是.java的文件。
sop(str.endsWith(".java"));
//判断文件中是否包含Demo。
sop(str.contains("Demo"));
}
public static void method_get()
{
String str="abcdebkpf";
//长度
sop(str.length());
//根据索引获取字符
sop(str.charAt(4));
//sop(str.charAt(40));//当访问到字符串中不存在的角标时会发生StringIndexOutBoundsException。
//根据字符获取索引
sop(str.indexOf('b'));
sop(str.indexOf('b',3));
sop(str.indexOf('m'));//如果没有找到返回-1
}
public static void main(String[] args)
{
method_get();
method_is();
}
public static Void sop(Object obj)
{
System.out.println(obj);
} 68行 编译提示第68行缺少返回语句,
}
跟毕老师视频中写的代码一样为什么会出现错误
|
|