码迷,mamicode.com
首页 >  
搜索关键字:retain cycle    ( 2217个结果
android-PullRefreshLayout使用
类似与谷歌的SwipeRefreshLayout。但比SwipeRefreshLayout美丽。 执行效果: 使用说明: 用法和SwipeRefreshLayout几乎相同。 在xml中: 1 2 3 4 5 6 <com.baoyz.widget.PullRefreshLayout android ...
分类:移动开发   时间:2017-06-04 19:54:29    阅读次数:222
[中英对照]Introduction to DPDK: Architecture and Principles
Introduction to DPDK: Architecture and Principles | DPDK概论:体系结构与实现原理 Linux network stack performance has become increasingly relevant over the past fe ...
分类:其他好文   时间:2017-06-03 12:54:35    阅读次数:435
Linked List Cycle
141. Linked List Cycle 题目链接:https://leetcode.com/problems/linked-list-cycle/#/description 题目大意:给定一个链表,判断是否有环,要求不能申请额外的空间 思路:使用快慢指针。fast指针一次移动两步,slow指针 ...
分类:其他好文   时间:2017-06-03 09:50:25    阅读次数:203
[转]Upgrading to Async with Entity Framework, MVC, OData AsyncEntitySetController, Kendo UI, Glimpse & Generic Unit of Work Repository Framework v2.0
本文转自:http://www.tuicool.com/articles/BBVr6z Thanks to everyone for allowing us to give back to the .NET community, we released v1.0 of the Generic Uni ...
分类:Web程序   时间:2017-05-31 16:44:06    阅读次数:442
ios导航控制器UINavigationController,控制器a跳转(push)到b后,b跳转(push)到c,但c后退(pop)进入a
參考:StackOverflow ios导航控制器UINavigationController,控制器a跳转(push)到b后,b跳转(push)到c。但c后退(pop)进入a。在b跳转(push)到c中代码书写例如以下: UINavigationController *navController ...
分类:移动开发   时间:2017-05-31 14:20:33    阅读次数:189
jQuery图片切换插件jquery.cycle.js
Cycle是一个很棒的jQuery图片切换插件,提供了很好的功能来帮助大家更简单的使用插件的幻灯功能下载cycle插件并引入,此时,注意把引入它的代码放在引入jQuery主文件之后。<head> <script type="text/javascript" src="js/jquery-1.8.0. ...
分类:Web程序   时间:2017-05-30 23:16:40    阅读次数:378
java并发编程(2)线程池的使用
一、任务和执行策略之间的隐性耦合 Executor可以将任务的提交和任务的执行策略解耦 只有任务是同类型的且执行时间差别不大,才能发挥最大性能,否则,如将一些耗时长的任务和耗时短的任务放在一个线程池,除非线程池很大,否则会造成死锁等问题 1.线程饥饿死锁 类似于:将两个任务提交给一个单线程池,且两个 ...
分类:编程语言   时间:2017-05-26 17:03:37    阅读次数:213
工具之grep
转自:http://www.cnblogs.com/dong008259/archive/2011/12/07/2279897.html grep (global search regular expression(RE) and print out the line,全面搜索正则表达式并把行打印出 ...
分类:其他好文   时间:2017-05-25 23:38:29    阅读次数:254
Oracle开发常用函数 max 最大数 自动加 1 的模式
create sequence bs_com_seq increment by 1 start with 1 minvalue 1 maxvalue 999999 cycle nocache order; select to_char(sysdate,'yyyymmdd')||lpad(bs_com ...
分类:数据库   时间:2017-05-24 12:34:42    阅读次数:193
ArrayList源码解析(三)
1.isEmpty() 如果此列表中没有元素,则返回 true 判断ArrayList是否为空,size为0时,即不包含任何成员时为空,返回true。 2.indexOf(Object o) 返回此列表中首次出现的指定元素的索引,或如果此列表不包含元素,则返回 -1。 原理就是从前向后遍历数组,看其 ...
分类:其他好文   时间:2017-05-24 00:46:32    阅读次数:267
2217条   上一页 1 ... 70 71 72 73 74 ... 222 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!