Description Given a board which is a 2D matrix includes a-z and dictionary dict, find the largest collection of words on the board, the words can not ...
分类:
其他好文 时间:
2019-12-22 00:39:36
阅读次数:
70
const list={} // 将事件名和事件函数装进事件池里 function $on(name,func) { if(!name || !func) return; if(!Object.keys(list).includes(name)){ list[name]=func; } } // 根 ...
分类:
其他好文 时间:
2019-12-21 22:23:27
阅读次数:
73
链接: https://codeforces.com/contest/1278/problem/A 题意: Polycarp has built his own web service. Being a modern web service it includes login feature. An ...
分类:
其他好文 时间:
2019-12-21 11:51:24
阅读次数:
180
本博客系列是学习并发编程过程中的记录总结。由于文章比较多,写的时间也比较散,所以我整理了个目录贴(传送门),方便查阅。 "并发编程系列博客传送门" 前言 在网上看了很多文章,也看了好几本书中关于JMM的介绍,我发现JMM确实是Java中比较难以理解的概念。网上很多文章中关于JMM的介绍要么是照搬了一 ...
分类:
编程语言 时间:
2019-12-20 11:32:50
阅读次数:
109
原因:由于idea不会编译src下的java目录下的xml文件,所以找不到xml文件 方案一:在pom.xml中添加如下内容 <build> <resources> <resource> <directory>src/main/java</directory> <includes> <include ...
分类:
移动开发 时间:
2019-12-17 20:43:39
阅读次数:
105
build/ android 先看看Android官方的解释Understand Build LayersThe build hierarchy includes the abstraction layers that correspond to the physical make... ...
分类:
移动开发 时间:
2019-12-12 01:26:40
阅读次数:
114
Porsche PIWIS III covers Porsche Cars till 2018 year and instead of Piwis tester II. Porsche PIWIS III (PST3) is available with Lenovo T440P version a ...
分类:
其他好文 时间:
2019-12-11 21:48:29
阅读次数:
84
[TOC] 0x00 前言 没有 0x01 分析 这个漏洞被描述为“匿名用户可访问私密page”,由此推断是权限判断出了问题。如果想搞懂哪里出问题,必然要先知道wp获取page(页面)/post(文章)的原理,摸清其中权限判断的逻辑,才能知道逻辑哪里会有问题。 这里我们直接从wp的核心处理流程mai ...
分类:
其他好文 时间:
2019-12-04 01:20:18
阅读次数:
228
概述 在spring boot 2.2 中 默认状态为status 999 private void addStatus(Map<String, Object> errorAttributes, RequestAttributes requestAttributes) { Integer statu ...
分类:
编程语言 时间:
2019-12-03 19:52:09
阅读次数:
97
没有添加这一项在编译后的.class文件中的结构目录是这样子的 添加上这一个配置项,在class配置文件中的位置是这样子的: 添加的配置文件是这样子的: <resources> <resource> <directory>src/main/java</directory> <includes> <i ...
分类:
Web程序 时间:
2019-12-01 16:56:51
阅读次数:
102