Peterson's algorithm (AKA Peterson's solution) is a concurrent
programming algorithm for mutual
exclusion that allows two processes to share a single-use resource without conflict, using only shar...
分类:
编程语言 时间:
2014-06-25 19:38:19
阅读次数:
748
java可以实现对图片的裁剪功能么 代码下载地址:http://www.zuidaima.com/share/1550463233002496.htm...
分类:
编程语言 时间:
2014-06-24 23:41:07
阅读次数:
240
http://www.cnblogs.com/qingche/p/3727559.html1.前言 作为现在App里必不可少的用户分享需要,社交化分享显然是我们开发app里较为常用的。最近因为公司App有社交化分享的需要,就特此研究了会,拿出来与大家分享。想要集成社交会分享,我们可以使用Share....
分类:
移动开发 时间:
2014-06-24 23:13:07
阅读次数:
331
jsp有办法实现word/excel的在线预览吗?谁帮忙解决下呀.代码下载地址:http://www.zuidaima.com/share/1550463230954496.htm...
分类:
Web程序 时间:
2014-06-24 23:03:30
阅读次数:
211
那位帮忙提供一个java mongodb多个collection进行mapreduce的操作。代码下载地址:http://www.zuidaima.com/share/1550463227890688.htm...
分类:
数据库 时间:
2014-06-24 19:51:56
阅读次数:
262
以下内容基于阅读205和217的PDF所做的笔记,没有深入研究。
205 Creating Extensions for iOS and OS X, Part 1
217 Creating Extensions for iOS and OS X, Part 2
Extension有多种,比如Share、Today、照片、输入法等等。
Extension本身不是app,它只是...
分类:
其他好文 时间:
2014-06-22 22:30:15
阅读次数:
272
??
Classes
类
Classes are the most important building block of any object-oriented system. A class is a description of a set of objects that share the same attributes, operations, relationships, ...
分类:
其他好文 时间:
2014-06-22 21:38:18
阅读次数:
226
javaniu用户头像如何实现的啊,能否提供一份代码呢 http://www.zuidaima.com/share/1550463225580544.htm...
分类:
编程语言 时间:
2014-06-22 20:04:11
阅读次数:
163
网站分享比较简单的一句js就可以了,但是手机就没有这么简单了,要有点小复杂,刚学Android两个月了,也再用第三方的Android开发组件,现在介绍给大家sharesdk。直接上代码!!第一步:下载ShareSDK官网http://share.sharesdk.cn/Download第二步:集成ShareSDK进入ShareSDK解压..
分类:
移动开发 时间:
2014-06-22 11:22:14
阅读次数:
391
from:unix高级环境编程
unix/linux中共享内存是最高效的ipc方式。
有几种使用方式:
1)mmap /dev/zero设备:
fd = open("/dev/zero", O_RDWR);
area = mmap(0, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
close(fd);
加入MAP_SHARE...
分类:
其他好文 时间:
2014-06-22 06:21:16
阅读次数:
215