摘要: 冒泡 快速排序 阅读全文
posted @ 2021-06-17 22:09 哥们要飞 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 一、函数式接口 1、概念 仅有一个抽象方法的接口 适用于函数式编程(Lambda表达式) 常见:Runnable、Comparator<>、生产型接口Producer的get方法、消费型接口Consumer的accept方法、Predict接口的test方法 2、格式 加FunctionalInte 阅读全文
posted @ 2021-06-17 22:08 哥们要飞 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 1、Servlet知识 HttpServlet接口继承自GenericServlet根接口 GenericServlet定义了service方法,HttpServlet定义了新的service方法 HttpServlet新添加了doGet和doPost方法 如果不对service方法进行重写Over 阅读全文
posted @ 2021-06-17 21:59 哥们要飞 阅读(32) 评论(0) 推荐(0) 编辑