第五周课程总结

1、final的使用:final声明的类不能有子类;final声明的方法不能被子类所覆写。
2、this和super的区别:this:访问本类中的属性,如果本类没有此属性则从父类中继续查找。super:访问父类中的属性;直接访问父类中的方法;调用父类构造,必须放在子类构造方法的首行。this和super都可以调用构造方法,但两者是不可以同时出现的,因为两者调用构造方法时都必须放在构造方法首行。
3、抽象类的定义及应用规则:

实验三 String类的应用

实验目的
掌握类String类的使用;
学会使用JDK帮助文档;
实验内容
1.已知字符串:"this is a test of java".按要求执行以下操作:(要求源代码、结果截图。)
统计该字符串中字母s出现的次数。

package shiyant;

public class Shiyan1 {
    public static void main(String[] args) {
        String str="this is a test of java";
        int sum=0,i,n=0;
        for(i=0;i<str.length();i++) {
            if(str.indexOf("s", n)!=-1) {
                n=str.indexOf("s",n)+1;
                sum++;
        }

    }
        System.out.println("s出现次数为:"+sum);
}
}

统计该字符串中子串“is”出现的次数。

package shiyans;

public class Shiyan2 {
    public static void main(String[] args) {
        String str="this is a test of java";
        int sum=0,i,n=0;
        for(i=0;i<str.length();i++) {
            if(str.indexOf("is", n)!=-1) {
                n=str.indexOf("is",n)+1;
                sum++;
        }

    }
        System.out.println("is出现次数为:"+sum);
}
}

统计该字符串中单词“is”出现的次数。

package shiyans;

public class Shiyan3 {
    public static void main(String[] args) {
        String str="this is a test of java";
        int sum=0,i,n=0;
        for(i=0;i<str.length();i++) {
            if(str.indexOf(" is ", n)!=-1) {
                n=str.indexOf(" is ",n)+1;
                sum++;
        }

    }
        System.out.println("is单词出现次数为:"+sum);
}
}

实现该字符串的倒序输出。

2.请编写一个程序,使用下述算法加密或解密用户输入的英文字串。要求源代码、结果截图。

3.已知字符串“ddejidsEFALDFfnef2357 3ed”。输出字符串里的大写字母数,小写英文字母数,非英文字母数

02-14 00:12