继承案例分析三(字符串统计)

本文提供两种方法来统计字符串“wantyoutokbowonething”中字母n和o的出现次数。第一种方法通过定义一个单独的处理类实现,第二种方法则采用继承的方式,使程序结构更加清晰。两种方案均可有效解决问题。
摘要由CSDN通过智能技术生成

编写程序,统计出字符串“want you to kbow one thing”中字n和字母o出现次数。

对于本程序而言,最简单的操作方式就是直接在主方法里面定义一个操作,或者直接定义一个新的类。
范例:定义一个单独的处理类

class  JavaDemo
{
	public static void main(String[] args) 
	{
		for(int x = 0;x < StringUtil.count("want you to know one thing").length;x++){
			if (x == 0)
			{
				System.out.println("n的个数为"+StringUtil.count("want you to know one thing")[x]);
			}else if(x == 1){
				System.out.println("o的个数为"+StringUtil.count("want you to know one thing")[x]);
			}
			
		}
	}
}

class StringUtil
{
	//返回第一个内容为字母n的个数,第二个内容为字母o的个数
	public static int[] count(String str){
		int[] countData = new int[2];	//用于存储n于o的个数
		char[] data = str.toCharArray();	//将字符串变成字符数组

		for(int x = 0;x < data.length;x++){	//用for循环遍历数组并判断记录次数
			if(data[x] == 'n'){
				countData[0] = countData[0] + 1;
			}else if(data[x] == 'o'){
				countData[1] = countData[1] + 1;
			} 
		}

		return countData;
	}
} 


在这里插入图片描述
以上解决方案严格来说只是一种顺序式的思维模式解决的,假设说现在统计的是字母o或者n的个数,还有可能要进行各种其他统计的设计。
在这里插入图片描述

class  JavaDemo
{
	public static void main(String[] args) 
	{
		StringCount SC = new StringCount("want you to know one thing");
		System.out.println(SC.getInfo());
	}
}

class StringUtil{
	private String content;	//需要保存字符串
	public StringUtil(String content){
		this.content = content;
	}
	public String getContent(){
		return this.content;
	}
	public String getInfo(){	//默认的信息返回 
		return this.getContent();
	}
}

class StringCount extends StringUtil
{
	private int nCount;
	private int oCount;
	public StringCount(String content){
		super(content);
		this.countChar();//实例化构造方法时自动调用countChar计算并记录结果
	}

	//计算StringUtil中所需要的结果并存储
	public void countChar(){
		char[]  data = super.getInfo().toCharArray();	//将字符串变成字符数组
		for(int x = 0;x < data.length;x++){	//用for循环遍历数组并判断记录次数
			if(data[x] == 'n'){
				this.nCount++;
			}else if(data[x] == 'o'){
				this.oCount++;
			} 
		} 
	}


	//把存储的数据返回
	public int getNCount(){
		return this.nCount;
	}
	public int getOCount(){
		return this.oCount;
	}
	public String getInfo(){
		return "n的个数为"+this.nCount+"\to的个数为"+this.oCount;
	}
}

在这里插入图片描述任何方案都可以,如果采用第一种方案比较直观,但是第二种方案比较适合结构化设计。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值