编写一个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.”,并具有输出该句子和统计该句子中包含的英文单词个数的能力。 展开
 我来答
madmacbeth
2019-05-12 · 超过29用户采纳过TA的回答
知道答主
回答量:70
采纳率:100%
帮助的人:26.8万
展开全部
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);
    }
}
厉智然0d4
2019-05-11 · 贡献了超过456个回答
知道答主
回答量:456
采纳率:25%
帮助的人:41.2万
展开全部
同学我帮你做一套,
追问
怎么帮呀
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式