• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
羽月科技
博客园    首页    新随笔    联系   管理    订阅  订阅

第五周课程总结&试验报告(三)

实验三 String类的应用

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

统计该字符串中字母s出现的次数。
统计该字符串中子串“is”出现的次数。
统计该字符串中单词“is”出现的次数。
实现该字符串的倒序输出。

实验代码:

package h1;

public class test {

	public static void main(String[] args) {
       String str = "this is a test of java";
       int i = 0;
       int c1 = 0;
       for(i = 0;i < str.length();i++) {     //利用for循环统计字符串总长度
    	   char a = str.charAt(i);
    	   if(a == 's') {
    	   c1++;
       }
	}
       System.out.println("s出现的次数为:" +c1);
       int b = str.indexOf("is");
       System.out.println("子串is出现的次数为:"+b);     //indexOf方法,课堂所讲
       int e = (str.split(" is ")).length-1;
       System.out.println("单词is出现的次数为:"+e);     //split函数
       StringBuffer r = new StringBuffer ("this is a test of java");   
       System.out.println("倒序输出:"+r.reverse());     //reverse,将字符串序列用反转形式取代
}
}

实验结果:

后三问利用上课所学更为简洁易懂。

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

实验代码:

package h1;
import java.util.Scanner;
public class jm {

	public static void main(String[] args) {
		 System.out.println("输入英文字符串:");
	        Scanner sc=new Scanner(System.in);   //对象实例化,键盘输入字符串
	        String str=sc.next();//读取字符串
	        char a[]= str.toCharArray();//字符串转换为字符数组
	        System.out.println("加密后结果:");
	        for(char x:a) {
	            System.out.print((char)(x+3));//ASCII值加3后输出
	     }
	 }
}

实验结果:

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

实验代码:

package h1;

public class sc {

	public static void main(String[] args) {
		 String str="ddejidsEFALDFfnef2357 3ed";
	        
	        char a[]=str.toCharArray();//字符串转换为字符数组a[]
	        int x=0,y=0,z=0;
	        for(int i=0;i<a.length;i++){//用i记录字符串总长度
	            if(a[i]>='A'&&a[i]<='Z'){
	                x++;//计算大写字母数量
	            }
	            else if(a[i]>='a'&&a[i]<='z'){
	                y++;//计算小写字母数量
	            }
	            else {
	                z++;//计算除开英文字母其他内容数量
	            }
	        }
	        System.out.println("大写字母数:"+x);
	        System.out.println("小写字母数:"+y);
	        System.out.println("非英文字母数:"+z);

	}

}

实验结果:

总结:

1、super、this不可同时用,都得放首行,只可选其一使用。

2、final

final声明的类不能有子类

final声明的方法不能被子类所覆写

final声明的变量即成为常量,常量不能修改

3、抽象类类似于模板

posted @ 2019-09-27 18:40  羽月Tech  阅读(207)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3