欢迎来到萧静默的博客

书山有路勤为径,学海无涯苦作舟。
摘要: 题目一:获取指定字符串中,大写字母、小写字母、数字的个数。 String str1 = "*Aab1B cd/e2f"; int bigCount = 0; int smallCount = 0; int numberCount = 0; char[] array = str1.toCharArra 阅读全文
posted @ 2020-07-16 17:20 萧静默 阅读(250) 评论(0) 推荐(0) 编辑
摘要: 1、重写equals public class Person1 { public String add; public String name; public int age; public Person1(String add, String name, int age) { this.add = 阅读全文
posted @ 2020-07-16 16:36 萧静默 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 1、酒店小案例 某五星级酒店,资金雄厚,要招聘多名员工(经理、厨师、服务员)。入职的员工需要记录个人信息(姓名、工号、经理特有奖金属性)。他们都有自己的工作要做。 本案例要完成如下需求: l 获取酒店幸运员工; l 酒店开设VIP服务,酒店的厨师与服务员可以提供VIP服务。(厨师做菜加量、服务员给顾 阅读全文
posted @ 2020-07-16 14:16 萧静默 阅读(826) 评论(0) 推荐(0) 编辑