字典扁平化、base64、最大公共字串,缓存,命令分发器
分类:
编程语言 时间:
2018-09-02 21:46:44
阅读次数:
149
// See also e551 精简的Applet try { URL url = new URL(getDocumentBase(), "http://hostname.com/page.html"); applet.getAppletContext().showDocument(url); }... ...
分类:
Web程序 时间:
2018-09-02 21:46:27
阅读次数:
177
题目链接 https://vjudge.net/problem/UVA-861 题意: 一个国际象棋棋盘,‘象’会攻击自己所在位置对角线上的棋子。问n*n的棋盘 摆放k个互相不攻击的 '象' 有多少种方式。 解析 :我们知道国际象棋的棋盘是黑交替 所以容易知道放在白格上的棋子 和 放在黑格上的棋子是 ...
分类:
其他好文 时间:
2018-09-02 21:46:07
阅读次数:
175
背景说明转自 : http://www.infoq.com/cn/articles/new-generation-server-testing-tool-gatling/ 以前Jmeter用的多,如文档中所说,实际使用后发现Jmeter多用户时很容易并发并发不均匀,导致一些数据统计不准确。 Jmet ...
分类:
其他好文 时间:
2018-09-02 21:46:00
阅读次数:
243
首先下载Maven的相关文件,下载地址:www.apache.org,进入官网后滑到底部 1、 2、 3、 下载完后解压,进入目录 apache-maven-3.5.4\conf 下的setting.xml文件,我是选择用Notepad++打开 直接滑到55行的位置,添加一个节点新建你的本地仓库存放 ...
分类:
其他好文 时间:
2018-09-02 21:45:43
阅读次数:
264
try { URL url = new URL("http://hostname/audio.au"); AudioClip ac = Applet.newAudioClip(url); ac.play(); } catch (MalformedURLException e) { } Related... ...
分类:
其他好文 时间:
2018-09-02 21:45:37
阅读次数:
177
Lambda 表达式是一种可用于创建委托或表达式目录树的匿名函数,在LINQ中被广泛使用。 1.委托和Lambda 2.Func和lambda的用法 3.linq和lambda用法 4.表达式目录树用法 ...
分类:
其他好文 时间:
2018-09-02 21:45:26
阅读次数:
141
restrict是C99标准中新添加的关键字,对于从C89标准开始起步学习C语言的同学来说(包括我),第一次看到restrict还是相当陌生的。Wikipedia给出的解释如下: In the C programming language, as of the C99 standard, restr ...
分类:
其他好文 时间:
2018-09-02 21:45:20
阅读次数:
176
The if statement encloses some code which is executed only if a condition is true. The general syntax of the if statement is: The if statement has two ...
分类:
其他好文 时间:
2018-09-02 21:45:01
阅读次数:
174
1、进入showdoc官网帮助目录下 https://www.showdoc.cc/web/#/help?page_id=828455960655160 阅读自动安装部署相关事项; 2、利用xshell进入自己服务器 按教程来, 如果报当前系统没有安装过 docker,则进入步骤3,如果很顺利,那么 ...
分类:
其他好文 时间:
2018-09-02 21:44:55
阅读次数:
245
All errors and exceptions extend from Throwable. By catching Throwable, it is possible to handle all unexpected conditions. There are several scenario ...
分类:
其他好文 时间:
2018-09-02 21:44:48
阅读次数:
124
webservice的几个重要术语解释: jax-ws: wsgen和wsimport命令讲解 1.wsgen 我们可以使用这个命令,根据Class文件,生成WSDL等相关文件 发布WSDL: cmd中首先切换路径到项目所在的根目录,然后用以下代码发布服务: 项目案例:wsgen -wsdl:soa ...
分类:
Web程序 时间:
2018-09-02 21:44:39
阅读次数:
220
打开浏览器后,输入chrome://extensions, 拖动插件到页面进行安装即可. ...
分类:
系统相关 时间:
2018-09-02 21:44:24
阅读次数:
552
一、概念和基本注解 从JDK1.5开始,引入了源代码中的注解这一机制。注解使得 Java 源代码中不但可以包含功能性的实现代码,还可以包含元数据。 那么什么是元数据呢?所谓元数据,就是描述数据的数据。比如说一张图片,图片内容是它的主体数据,那么像图片的创建时间、修改时间、创建者等等这些数据,就是这张 ...
分类:
编程语言 时间:
2018-09-02 21:44:05
阅读次数:
155
server端伪代码: server端: client端: 伪代码: 运行结果: ...
分类:
编程语言 时间:
2018-09-02 21:43:55
阅读次数:
205
The for statement can be used to conveninently iterate over the elements of an array. The general syntax of the array-based for statement is: The arra ...
分类:
编程语言 时间:
2018-09-02 21:43:45
阅读次数:
144