上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 28 下一页
摘要: 查看Tomcat是否以关闭 阅读全文
posted @ 2019-07-16 17:21 yixiu868 阅读(271) 评论(0) 推荐(0) 编辑
摘要: 1、廖雪峰老师Git教程 地址:https://www.liaoxuefeng.com/wiki/896043488029600 2、Eclipse eGit连接GitHub教程 地址:https://www.cnblogs.com/yc-755909659/p/3753626.html 3、Ecl 阅读全文
posted @ 2019-07-08 22:59 yixiu868 阅读(95) 评论(0) 推荐(0) 编辑
摘要: 1 abstract class AbstractClass 2 { 3 public abstract void PrimitiveOperation1(); 4 5 public abstract void PrimitiveOperation2(); 6 7 public void TemplateMetho... 阅读全文
posted @ 2019-07-04 22:31 yixiu868 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 1 public interface Component { 2 3 void operation(); 4 } 1 public class ConcreteComponent implements Component { 2 3 @Override 4 public void operation() { 5 System.out.println... 阅读全文
posted @ 2019-07-04 22:08 yixiu868 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-06-28 17:49 yixiu868 阅读(112) 评论(0) 推荐(0) 编辑
摘要: Cron Expressions cron的表达式是字符串,实际上是由七子表达式,描述个别细节的时间表。 1)Cron表达式的格式:秒 分 时 日 月 周 年(可选)。 字段名 允许的值 允许的特殊字符 秒 0-59 , - * / 分 0-59 , - * / 小时 0-23 , - * / 日 阅读全文
posted @ 2019-04-01 14:17 yixiu868 阅读(232) 评论(0) 推荐(0) 编辑
摘要: 如何使用group by进行去重 因为mysql的distinct在结果集中,全部不同,才可以去重。所以,当我们进行去重处理的时候,需要单独对某列进行去重,可以使用group by子句进行分组去重select _auto_id from account_login group by _auto_id 阅读全文
posted @ 2019-03-25 16:46 yixiu868 阅读(2027) 评论(0) 推荐(0) 编辑
摘要: /** * 数组必须是已排序 * @param key 查找key * @param array 数组 * @return */ public static int rank(int key, int[] array) { int low = 0; int high = array.length - 1; while (low array[mid])... 阅读全文
posted @ 2019-03-04 13:07 yixiu868 阅读(97) 评论(0) 推荐(0) 编辑
摘要: import java.awt.Container; import java.awt.GridBagConstraints; import java.awt.GridBagLayout; import java.awt.Insets; import java.io.File; import java.io.InputStream; import java.io.PrintStream; impo... 阅读全文
posted @ 2019-03-02 13:12 yixiu868 阅读(441) 评论(0) 推荐(0) 编辑
摘要: requiredCharsets:由Java平台支持字符集对象标准名称,构造一个sorted map。 public void test() { Map sortedMap = Charsets.requiredCharsets(); Set> entrySet = sortedMap.entrySet(); for (Map.Entry ent... 阅读全文
posted @ 2019-02-28 00:52 yixiu868 阅读(680) 评论(0) 推荐(0) 编辑
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 28 下一页