实验三 String类的应用 实验目的 掌握类String类的使用: 学会使用JDK帮助文档: 实验内容 1.已知字符串:"this is a test of java".按要求执行以下操作:(要求源代码.结果截图.) 统计该字符串中字母s出现的次数. 统计该字符串中子串“is”出现的次数. 统计该字符串中单词“is”出现的次数. 实现该字符串的倒序输出. 实验代码 public static void main(String[] args) { String s = "th…
第四周课程总结 一.String类 1.实例化 (1)直接赋值 public class Xxxx{ public static void main(String args[]){ String a = "abcd"; //实例化String对象 System.out.println(a); //输出 } } (2)使用new关键词 public class Xxxx{ public static void main(String args[]){ String a = new Str…