jQuery所支持的css样式 backgroundPosition borderWidth borderBottomWidth borderLeftWidth borderRightWidth borderTopWidth borderSpacing margin marginBottom mar ...
分类:
Web程序 时间:
2016-12-28 02:24:30
阅读次数:
186
mysql中正则表达式的性能要高于like,所以这里总结一下正则表达式的使用。 正则表达式的模式及其含义: 下面举例说明其用法: 建表student: create table student(id int(6) auto_increment,name carchar(6),age int(3),p ...
分类:
数据库 时间:
2016-12-27 18:11:58
阅读次数:
190
MySQL在使用UNION查询时或者创建视图时报:异常:SQL error: #1271 - Illegal mix of collations for operation 'UNION',此类问题是由于UNION Mysql的Table的时候对应的字段Collation字符序不同导致的,如下图所示 ...
分类:
数据库 时间:
2016-12-27 14:17:14
阅读次数:
373
iOS开发与设计模式 - MVC 最近在学习GoF的设计模式这本书,粗略的浏览了一遍,真是好书。好书就应该好好读,因此很有必要从实际的言语、项目理解设计模式。 我是做iOS开发的,自然就从这方面入手(脑)。 MVC iOS开发最基本的一个模式就是MVC, M指model,V指view,C指contr ...
分类:
移动开发 时间:
2016-12-27 07:24:57
阅读次数:
344
转自:BloomFilter——大规模数据处理利器,有改动 总结: BloomFilter用位向量(节省内存占用)来标记元素是否出现过,每个元素经hash得到在位向量中的位置,为了降低hash冲突的概率,同时用n个hash函数,因此每个元素有n个hash值。若一个元素的n个hash函数所指定的位的值 ...
分类:
其他好文 时间:
2016-12-26 23:56:55
阅读次数:
512
1)创建一个Project mvn archetype:generate 固定格式 -DgroupId 组织标识(包名) -DartifactId 项目名称 -DarchetypeArtifactId 指定ArchetypeId,maven-archetype-quickstart,创建一个Java ...
分类:
其他好文 时间:
2016-12-26 21:46:35
阅读次数:
213
说到浮动之前,先说一下CSS中margin属性的两种特殊现象 1, 外边距的合并现象: 如果两个div上下排序,给上面一个div设置margin-bottom,给下面一个div设置margin-top,那么两个margin会发生合并现象,合并以后的值较大的那个。 对于这种现象一般不用处理。 2,ma ...
分类:
Web程序 时间:
2016-12-26 21:12:40
阅读次数:
280
关注“ web前端学习部落22群”群号 领取前端免费学习资料及工具! <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>左边导航</title> <style> *{margin:0;padding:0;/*b ...
分类:
其他好文 时间:
2016-12-26 18:36:38
阅读次数:
508
public class HelloWorld{ public static void main(String[] args) { String name="爱慕课"; char sex='男'; int num=18; double price=120.5; boolean isOK=true; ...
分类:
编程语言 时间:
2016-12-26 16:40:46
阅读次数:
227