Erlang系统自带的基础数据类型有:atom、tuple、list、binary、pid、float、number、port、reference、record。用户可以通过通过命令type来自定义数据类型,实现方法:-type device() :: atom() | pid().-type pr...
分类:
其他好文 时间:
2014-07-11 23:26:47
阅读次数:
507
1、XSL声明: 把文档声明为 XSL 样式表的根元素是 或 ,并且必须包含属性 version="1.0"。 2、把 XSL 样式表链接到 XML 文档 向 XML 文档("cdcatalog.xml")添加 XSL 样式表引用: Empire Burlesque Bob Dylan USA Co...
分类:
其他好文 时间:
2014-07-11 21:05:26
阅读次数:
230
关于这个错误:Subversion detected an unsupported working copy version while checking the status of 'XXXX'. Most likely you upgraded another Subversion client...
分类:
其他好文 时间:
2014-07-09 19:13:25
阅读次数:
345
一个需求: 在域控范围获得访问用户的计算机名.方法:1.测试软件环境: XAMPP Control Panel V3.2.1 , Apache version 2.4.72.Apache 2.2 使用 mod_auth_sspi.so 模块,Apache 2.4 以后此模块不再适用,使用mod_au...
分类:
Web程序 时间:
2014-07-09 16:44:22
阅读次数:
881
1.判断是否存在注入,加';and 1=1;and 1=22.判断版本 and ord(mid(version(),1,1))>51 代替。5.判断数据库连接帐号有没有写权限,and (select count(*) from mysql.user)>0 select1,concat(char(12...
分类:
Web程序 时间:
2014-07-09 16:11:23
阅读次数:
249
Balanced Number
Time Limit: 10000/5000 MS (Java/Others) Memory Limit: 65535/65535 K (Java/Others)
Total Submission(s): 1871 Accepted Submission(s): 836
Problem Description
A balanced...
分类:
其他好文 时间:
2014-07-09 11:54:01
阅读次数:
187
1、andriod gradle插件版本过低。
出错位置:
dependencies{
classpath 'com.android.tools.build:gradle:0.10.2'
}
提示信息:You must use a newer version of the Android Gradle plugin. The minimum supported version is ...
分类:
其他好文 时间:
2014-07-09 10:43:51
阅读次数:
230
1、级别说明
级别顺序(低到高): DEBUG
2、测试实例
/**
* @Title:LogLevel.java
* @Package:com.you.log
* @Description:log4j日志等级
* @Author: 游海东
* @date: 2014年7月8日 下午10:58:41
* @Version V1.2.3
*/
packag...
分类:
其他好文 时间:
2014-07-09 10:36:44
阅读次数:
359
一、基础版~冒泡排序/*
*@authoropxin
*@version1.0
*冒泡算法
*
*/
publicclassBubbleSort
{
publicstaticvoidmain(String[]args)
{
int[]number=
{36,12,78,51,93,18,88,29,64,45};
inttemp=0;
for(inti=0;i<number.length;i++)
{
for(intj=0;j<number.length-1-i;j++)..
分类:
其他好文 时间:
2014-07-08 12:11:43
阅读次数:
171
Problem Description
A number of rectangular posters, photographs and other pictures of the same shape are pasted on a wall. Their sides are all vertical or horizontal. Each rectangle can be partially...
分类:
其他好文 时间:
2014-07-08 11:10:23
阅读次数:
164