1.安装NSIS 打开安装程序,按照指示安装即可 2. 安装完毕,打开NIS Edit,点击文件,选择新建脚本:向导(W),如下图所示。 3. 点击下一步,在这里相应更改: (1)将应用程序名称填写*.exe文件名; (2)软件版本、出版人、网站根据实际需要填写(若没有,则保留空白即可); (3)程 ...
分类:
编程语言 时间:
2016-12-07 09:29:33
阅读次数:
236
1.什么是枚举 枚举是jdk1.5后才增加的新特性 用枚举就是要规定一个新的类型,那么要用这个类型的值就必须是我规定的那些值。如果不是那些值,编译器就会报错,好处是编译时就会做出判断 2.用普通类模拟枚举的实现原理 这里还可以使用抽象方法的方式实现nextDay(),就将大量的if.else语句转义 ...
分类:
编程语言 时间:
2016-12-07 07:33:58
阅读次数:
150
转载:http://xw-z1985.iteye.com/blog/1973205 服务端依次发生的步骤 客户端依次发生的步骤 ...
分类:
Web程序 时间:
2016-12-04 20:05:47
阅读次数:
235
A. 题意:字符串长度n,每次可向左向右跳k个格子。要求不能在障碍物处停留(‘#’),可以在空地处停留(‘ . ’)。给出字符串,从G开始,问能不能到达T。 分析:直接从G处开始向两边搜,如果能到T则输出YES,如果到达边界或到障碍物#停止搜索。、 #include<iostream> #inclu ...
分类:
其他好文 时间:
2016-12-04 07:05:35
阅读次数:
204
import re from bs4 import BeautifulSoupdoc = ['<html><head><title>Page title</title></head>', '<body><p id="firstpara" align="center">This is paragrap ...
分类:
其他好文 时间:
2016-12-03 23:24:16
阅读次数:
231
安装package Control的方法 安装插件方法 常用插件推荐 sublime text添加vim工具 ...
分类:
其他好文 时间:
2016-12-02 01:52:37
阅读次数:
154
1、要在intellij idea使用maven,同样是先要配置maven的路径,不过intellij idea已经集成maven插件了,省去了安装的麻烦 2、创建maven web项目 点击finish完成项目的创建过程,为了在pom.xml文件中添加依赖之后自动引入jar,在idea右上角点击E ...
分类:
其他好文 时间:
2016-12-02 01:32:00
阅读次数:
469
原文地址:https://en.wikipedia.org/wiki/Cross_product Cross product From Wikipedia, the free encyclopedia This article is about the cross product of two ve ...
分类:
其他好文 时间:
2016-12-02 01:05:37
阅读次数:
612
500个英语常用表达1. a big headache令人头痛的事情2. a fraction of 一部分3. a matter of concern 焦点4. a series of 一系列,一连串above all 首先,尤其是5. absent from不在,缺席6. abundant in ...
分类:
其他好文 时间:
2016-12-01 14:40:14
阅读次数:
254
By default, queries in MongoDB return all fields in matching documents. To limit the amount of data that MongoDB sends to applications, you can includ ...
分类:
数据库 时间:
2016-12-01 07:44:53
阅读次数:
258