摘要: /** * Lamdab推导 */public class TestLamdba1 { //3.静态内部类(写在方法外) static class Like2 implements Ilike{ @Override public void lamdba() { System.out.println( 阅读全文
posted @ 2022-04-27 17:47 花田007 阅读(26) 评论(0) 推荐(0) 编辑
摘要: /** * 线程的实现方式三:实现callable接口 * 好处: * 1.可以定义返回值 * 2.可以抛出异常 */public class TestCallable implements Callable<Boolean> { @Override public Boolean call() { 阅读全文
posted @ 2022-04-27 15:26 花田007 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 转自:https://blog.csdn.net/mingyuli/article/details/113742636 阅读全文
posted @ 2022-04-27 14:06 花田007 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-04-27 10:42 花田007 阅读(5) 评论(0) 推荐(0) 编辑
摘要: Random random = new Random(); String s = random.nextInt(99999) + ""; // 添加一个空的字符串使随机数转变为String类型 StringBuffer buffer = new StringBuffer(); for (int i 阅读全文
posted @ 2022-04-24 09:18 花田007 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 快捷键: Ctrl+L:清空控制台 Ctrl+C:终止当前指令 Ctrl+alt:鼠标跳出虚拟机 目录结构: Etc:配置文件目录 Usr:用户安装的软件的目录 Var:可变的目录(放日志,项目代码) 蓝色是文件夹根据 根据下图判断 Linux中第一个字符代表这个文件是目录、文件或链接文件等等。 当 阅读全文
posted @ 2022-04-16 08:58 花田007 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 代码如下: public class Demo13 { public static void main(String[] args) { //1.创建服务,创建线程池,线程池大小10 ExecutorService service = Executors.newFixedThreadPool(10) 阅读全文
posted @ 2022-04-15 17:34 花田007 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-04-15 15:15 花田007 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 1.在项目目录中新建一个lib文件夹(一般这样,非必须) 2.复制相应的jar包 3.如下图 成功后如下图: 可以通过下图的项目结构查看 阅读全文
posted @ 2022-04-13 22:58 花田007 阅读(943) 评论(0) 推荐(0) 编辑
摘要: 例子: 阅读全文
posted @ 2022-04-13 22:37 花田007 阅读(15) 评论(0) 推荐(0) 编辑