
编写一个Java应用程序,要求在程序中自定义一个类,该类对象能使用String类对象保存 5
编写一个Java应用程序,要求在程序中自定义一个类,该类对象能使用String类对象保存一个英文句子“Thispaperrigorouslyshowsintheframe...
编写一个Java应用程序,要求在程序中自定义一个类,该类对象能使用String类对象保存一个英文句子“This paper rigorously shows in the framework of poly-agent systems theory that it is very natural for an innovative society to emerge stratification of networks to cope with complexity intelligent decision makers of it have to deal with.”,并具有输出该句子和统计该句子中包含的英文单词个数的能力。
展开
展开全部
class Test{
public static long getCountOfTargetWorld(String target, String content){
if (target == null || content == null)
throw new IllegalArgumentException();
Pattern pattern = Pattern.compile(target);
Matcher matcher = pattern.matcher(content);
long index = 0;
while (matcher.find()) {
index++;
}
return index;
}
public static void main(String[] args){
String content = "This paper rigorously shows in the framework of poly-agent systems theory that it is very natural for an innovative society to emerge stratification of networks to cope with complexity intelligent decision makers of it have to deal with.";
// 要统计个数的单词
String target = "to";
// 得到目标单词的个数
long count = getCountOfTargetWorld(target,content);
System.out.println(content +"中包含有"+ count + "个" + target);
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询