码迷,mamicode.com
首页 >  
搜索关键字:dex    ( 10285个结果
java Blocking Queue
一、Java中的阻塞队列 在多线程之间通信中,多个线程共享一个进程所分配的资源,共享内存是一种常见的通信方式,而阻塞队列则是其实现方式的一种,例如经典的生产者-消费者模式。 A Queue that addtionally supports operations that wait for the ...
分类:编程语言   时间:2016-11-06 02:25:03    阅读次数:374
[terry笔记]对人员列表文件进行数据库操作
原文件(数据已经脱敏): ...
分类:数据库   时间:2016-11-06 02:11:57    阅读次数:308
openLDAP
错误提示: D:\OpenLDAP>slapd -d 256 515a48ae OpenLDAP 2.4.34 Standalone LDAP Server (slapd)515a48af config_build_attrs: error 21 on olcConfigFile value #0 ...
分类:其他好文   时间:2016-11-06 01:53:48    阅读次数:227
JS原生方法实现瀑布流布局
html部分(图片都是本地,自己需要改动图片) <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <link rel="stylesheet" type="text/css" href="css/one.css" ...
分类:Web程序   时间:2016-11-06 01:45:54    阅读次数:399
requirejs一 加载JavaScript文件
首先,目录如下(根目录有一个index.html文件、有一个scripts文件夹): scripts文件夹有如下的文件 以下是index.html代码 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>My Sample Project</title> 5 < ...
分类:编程语言   时间:2016-11-05 23:19:16    阅读次数:611
常用sql commands
1. mysql -uroot -p 2. show databases; 3.exit; 4. create database intrepid_detectives; // 创建新的database 5. use intrepid_detectives; // 开始使用新创的那个数据库 data ...
分类:数据库   时间:2016-11-05 22:53:22    阅读次数:293
守卫剑阁 物品代码
...
分类:其他好文   时间:2016-11-05 14:13:05    阅读次数:863
jQuery总结
jQuery的入口函数 jQuery(document).read(function(){ }); $(function(){ });// ** window.onlaod = function(){} $ jQuery // $是jQuery全局函数的别名。 (重点) document ready ...
分类:Web程序   时间:2016-11-05 07:36:29    阅读次数:302
两个多项式相加 ( C++ )
实现两个多项式进行相加 不开辟空间 ( 这要求实现进行相加,代价为两个原链表将被修改) 分析: this>other 就把other当前结点放置在this之前 this<other 就this当前结点前移一位,并且后继也前移一位 this==other 求和为0就删除,并全部前移一位,不等就删除ot ...
分类:编程语言   时间:2016-11-05 02:14:52    阅读次数:231
【练习】表维护
1.在world数据库中新建一个名为city_temp的表,该表示city表的副本,将city表的内容插入city_temp表中。 2.通过使用id列删除city_temp表数据中的多个行来创建‘洞’(删除或更新产生的行间隔)。 3.通过对city_temp表运行analize table 来更新表 ...
分类:其他好文   时间:2016-11-04 22:57:22    阅读次数:277
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!