欢迎来到萧静默的博客

书山有路勤为径,学海无涯苦作舟。
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 34 下一页
摘要: 1、ArrayList使用 无长度限制的使用的对象集合。 package cn.burce.gather; import java.util.ArrayList; import Constructor.Person; public class Arrarylist { public static v 阅读全文
posted @ 2020-07-23 10:34 萧静默 阅读(113) 评论(0) 推荐(0)
摘要: 1、因为计算机使用浮点运算 有时候使用double时候 计算出来的不是你需要的数据,精度准确,也别是财务计算时不大方便, 此时需要使用BigDecimal类来进行计算。 package cn.burce.API3; import java.math.BigDecimal; import java.m 阅读全文
posted @ 2020-07-23 09:46 萧静默 阅读(196) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2020-07-22 14:31 萧静默 阅读(114) 评论(0) 推荐(0)
摘要: 1、求出自己已经出生多少天 2、判断闰年 package cn.burce.Calendar; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; import java.util. 阅读全文
posted @ 2020-07-20 15:21 萧静默 阅读(200) 评论(0) 推荐(0)
摘要: package cn.burce.Date; import java.sql.DatabaseMetaData; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; pu 阅读全文
posted @ 2020-07-20 11:09 萧静默 阅读(191) 评论(0) 推荐(0)
摘要: 1、正则表达式学习 package cn.burce.Regex; public class RegexDemo { public static void main(String[] args) { System.out.println(checkQQ("604154942")); System.o 阅读全文
posted @ 2020-07-20 09:43 萧静默 阅读(123) 评论(0) 推荐(0)
摘要: 题目一:获取指定字符串中,大写字母、小写字母、数字的个数。 String str1 = "*Aab1B cd/e2f"; int bigCount = 0; int smallCount = 0; int numberCount = 0; char[] array = str1.toCharArra 阅读全文
posted @ 2020-07-16 17:20 萧静默 阅读(254) 评论(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 萧静默 阅读(153) 评论(0) 推荐(0)
摘要: 1、酒店小案例 某五星级酒店,资金雄厚,要招聘多名员工(经理、厨师、服务员)。入职的员工需要记录个人信息(姓名、工号、经理特有奖金属性)。他们都有自己的工作要做。 本案例要完成如下需求: l 获取酒店幸运员工; l 酒店开设VIP服务,酒店的厨师与服务员可以提供VIP服务。(厨师做菜加量、服务员给顾 阅读全文
posted @ 2020-07-16 14:16 萧静默 阅读(860) 评论(0) 推荐(0)
摘要: 1、抽象类 public abstract class Animal { public abstract void eat(); public abstract void sleep(); } 2、程序入口 public class Test { public static void main(St 阅读全文
posted @ 2020-07-14 17:15 萧静默 阅读(120) 评论(0) 推荐(0)
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 34 下一页