上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 58 下一页
摘要: 在Android中,有两种性质的线程: 主线程 也叫UI线程,主要作用是处理界面相关的业务 子线程 Android中的耗时操作(访问网络,I/O操作)不能在主线程进行,因为那样很可能导致界面的卡顿,甚至应用程序崩溃 其中主线程不做耗时操作,子线程不更新UI,从Android3.0开始,系统要求访问网 阅读全文
posted @ 2018-09-25 22:57 c&z 阅读(1159) 评论(0) 推荐(1) 编辑
摘要: #include using namespace std; template class Test { public: T1 m_t1; public: Test(T1 t1) { this->m_t1 = t1; } }; int main(void) { typedef Test TEST; int a(100); ... 阅读全文
posted @ 2018-09-14 14:47 c&z 阅读(94) 评论(0) 推荐(0) 编辑
摘要: RefBase system/core/include/utils/RefBase.h IInterface frameworks/native/include/binder/IInterface.h IBinder frameworks/native/include/binder/IBinder. 阅读全文
posted @ 2018-09-14 10:34 c&z 阅读(175) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 58 下一页