码迷,mamicode.com
首页 >  
搜索关键字:prepare    ( 1026个结果
Android消息循环机制
Android中除了UI线程(主线程),创建的工作线程默认是没有消息循环和消息队列的。如果想让该线程具有消息队列和消息循环,并具有消息处理机制,就需要在线程中首先调用Looper.prepare()来创建消息队列,然后调用Looper.loop()进入消息循环。classLooperThreadextendsThread{pu..
分类:移动开发   时间:2015-08-30 01:14:35    阅读次数:953
poj 1020 Anniversary Cake(切正方形蛋糕+搜索)
Anniversary CakeNahid Khaleh decides to invite the kids of the "Shahr-e Ghashang" to her wedding anniversary. She wants to prepare a square-shaped cho...
分类:其他好文   时间:2015-08-28 11:04:21    阅读次数:163
Prepare to Pick Two
?Prepare to Pick TwoBill de hÓraSoMETiMES ACCEpTing A ConSTRAinT or giving up on a property can lead to a better architecture, one that is easier and less expensive to build and run. Like buses, desira...
分类:其他好文   时间:2015-08-27 11:15:19    阅读次数:143
【POJ 3615】Cow Hurdles
Cow HurdlesTime Limit:1000MSMemory Limit:65536KTotal Submissions:6486Accepted:2948DescriptionFarmer John wants the cows to prepare for the county jump...
分类:其他好文   时间:2015-08-25 18:54:32    阅读次数:132
使用Gradle daemon加快Gradle开发速度
It takes a few seconds to finish the process, even there is only one file need to recompile. Because before gradle do any real building job, it has to do some initial work like loading JVM, prepare...
分类:其他好文   时间:2015-08-20 17:05:35    阅读次数:475
mysql 事务提交过程
打开binlog选项后,执行事务提交命令时,就会进入两阶段提交模式。两阶段提交分为prepare阶段和commit两个阶段。流程如下 :这里面涉及到两个重要的参数:innodb_flush_log_at_trx_commit和sync_binlog,参数可以设置不同的值,具体可以查看mysql的帮助...
分类:数据库   时间:2015-08-17 23:22:35    阅读次数:189
DBI-1.634之selectrow_array与fetchrow_array的区别
在DBI-1.634使用手册里有一个selectrow_array函数,该函数具体说明如下: This utility method combines "prepare", "execute" and "fetchrow_array" into a single call. If called...
分类:数据库   时间:2015-08-17 17:08:59    阅读次数:218
Handler笔记
1.一个线程可以有多个Handler2.一个线程只有一个Looper,和一个消息队列MessageQueue3.如果没有指定,Handler在哪个线程创建,就用哪个线程的Looper4.除了主线程,其他的线程都需要先调用Looper.prepare()方法,创建Looper,再用looper.loo...
分类:其他好文   时间:2015-08-17 09:57:09    阅读次数:126
用pdo实现的织梦后台留言板
prepare($sql); $st->bindParam(':title', $title); $st->bindParam(':tid', $tid); $st->bindParam(':mid', $mid); $st->bindParam(':uname', $una...
分类:其他好文   时间:2015-08-15 10:20:04    阅读次数:154
ijkplayer阅读笔记02
ijkplayer阅读笔记02 1.在这一章主要介绍音视频解码和显示线程的创建和启动,直接贴代码如下: IjkMediaPlayer_prepareAsync{ ijkmp_prepare_async_l{ ijkmp_change_state_l(mp, MP_STATE_ASYNC_PREPARING); msg_queue_start(&mp->ffplay...
分类:其他好文   时间:2015-08-14 19:21:34    阅读次数:204
1026条   上一页 1 ... 78 79 80 81 82 ... 103 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!