11 2020 档案

摘要:参考文档:https://blog.csdn.net/qq_38225558/article/details/94381467 阅读全文
posted @ 2020-11-27 19:53 LearnSB 阅读(183) 评论(0) 推荐(0)
摘要:参考文档:https://www.runoob.com/w3cnote/java-printf-formate-demo.html printf需要两个参数,一个参数是String类型的format用来规定按照何种格式输出;第二个参数是要格式化的内容; 阅读全文
posted @ 2020-11-24 19:13 LearnSB 阅读(170) 评论(0) 推荐(0)
摘要:https://www.cnblogs.com/wang-yaz/p/10757937.html 阅读全文
posted @ 2020-11-24 17:37 LearnSB 阅读(81) 评论(0) 推荐(0)
摘要:https://www.cnblogs.com/dingxu/p/8968889.html 阅读全文
posted @ 2020-11-24 11:15 LearnSB 阅读(853) 评论(0) 推荐(0)
摘要:https://www.cnblogs.com/feiwu666-888/p/11275032.html +unmodifiableCollection(Collection:list):Collection:unmodifablelist 阅读全文
posted @ 2020-11-23 17:53 LearnSB 阅读(106) 评论(0) 推荐(0)
摘要:今天印象比较深刻的一个问题是:写了生产者(查询)和消费者(存储)的线程;生产者调了四个线程;消费者一个线程;本来应该是生产者每起一个线程,标志位加一;通知消费者线程可以存储了;结果由于标志位加一的语句位置搞错了,没有生效;导致生产者标志位一直为0,消费者拿到的生产者标志位一直是0,根本没有调功能接口 阅读全文
posted @ 2020-11-19 17:34 LearnSB 阅读(93) 评论(0) 推荐(0)
摘要:https://www.cnblogs.com/fengzheng/p/14004342.html 阅读全文
posted @ 2020-11-19 17:02 LearnSB 阅读(137) 评论(0) 推荐(0)
摘要:try catch的意思就是当你试图尝试做某一件事情的时候(例如5v5电竞游戏),发现它并不简单=_=,要失败了,catch会帮你兜底执行最后的挣扎(例如你发现游戏要输的节奏,不行我至少得拿个败方MVP*_*);(胡说八道ing) 使用场景:假如你是一名刺客,刺杀主人公未遂(try),只能吃下藏在牙 阅读全文
posted @ 2020-11-19 16:42 LearnSB 阅读(1335) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/boling_cavalry/article/details/79120268 阅读全文
posted @ 2020-11-17 17:36 LearnSB 阅读(83) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/weixin_43770545/article/details/90486809 https://www.cnblogs.com/abcdjava/p/11262330.html 阅读全文
posted @ 2020-11-17 17:05 LearnSB 阅读(381) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/gschen_cn/article/details/105190597 前人栽树~ 阅读全文
posted @ 2020-11-16 16:15 LearnSB 阅读(315) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/sunroyfcb/article/details/89710553 String与Int类型转换:Integer.parseInt(String a); String与Long类型转换:Long.parseLong(String a); jdk版本不支持 阅读全文
posted @ 2020-11-16 16:11 LearnSB 阅读(846) 评论(0) 推荐(0)