-
ubuntu 映射网络驱动器
摘要:sudo apt-get install smbfs :添加smbfs文件系统mount.cifs //192.168.0.112/zhengwei ./112 -o username=zhengwei, password=zhengwei,dir_mode=0777 :映射驱动
阅读全文
-
android定时器
摘要:Timers schedule one-shot or recurringtasksfor execution;When a timer is no longer needed, users should callcancel(), which releases the timer's thread and other resources. Timers not explicitly cancelled may hold resources indefinitely。定时器会定期执行我们的task线程: 定时器周期由 task执行时间与定时器设定设定时间中大的决定。 如果task被某个
阅读全文
-
Android 进程分析
摘要:ps查看进程PID:进程IDPPID:父进程ID进程类型:1.初始化进程/initkthreadd2.内核进程kthreadd的子进程3.启动进程由init.rc脚本决定4.java用户进程由zygote java虚拟机创建 4.1 对于user是system的为系统权限 4.2对于app_xx的是默认权限6.adb shell登录进程
阅读全文
|