1.“alt”+“/”(代码补全):2.“ctrl”+“alt”+“h”(call hierarchy-----显示一个方法的调用层次,被哪些方法调用)3.“ctrl”+“shift”+“t”(查找在哪些包中包含RegisDb类)4.“ctrl”+“h”(通过不同方式,查找需要的内容对应的文件或者目...
分类:
系统相关 时间:
2014-10-21 17:02:03
阅读次数:
162
参考:
《Linux内核设计与实现》
0 摘要
linux的系统调用过程:
层次如下:
用户程序------>C库(即API):INT 0x80 ----->system_call------->系统调用服务例程-------->内核程序
先说明一下,我们常说的用户API其实就是系统提供的C库。
系统调用是通过软中断指令 INT 0x80 实现的,而这条INT 0x80指令就被封装在...
分类:
系统相关 时间:
2014-10-21 12:27:49
阅读次数:
331
The InetAddress class can be used to perform Domain Name Server (DNS) lookups. For example, you can call the static InetAddress.getByName("www.teamcak...
分类:
其他好文 时间:
2014-10-21 03:34:31
阅读次数:
219
Q: Fatal error: Call to undefined function session_register() in xxx.phpA: 1、PHP4.2以上版本不需要用session_register()注册SESSION变量,直接用: $_SESSION["string"]=“str...
分类:
Web程序 时间:
2014-10-20 23:15:43
阅读次数:
227
Launching Fullscreen Mode // Find the right method, call on correct element
function launchIntoFullscreen(element) {
if(element.requestFullscreen) {
element.requestFullscreen();
} else if(e...
NFS的全名叫network file system即网络文件系统。由sun公司开发,目前主流版本为V4,nfs监听在tcp2049端口。不过nfs只负责数据的共享,网络上各个主机的连接及各自的ip端口信息是由另一个小伙伴帮忙管理的,他叫rpc--remote protocol call 即远程过程...
分类:
系统相关 时间:
2014-10-20 18:49:40
阅读次数:
219
系统打电话界面:Intent intent = new Intent();//系统默认的action,用来打开默认的电话界面 intent.setAction(Intent.ACTION_CALL);//需要拨打的号码intent.setData(Uri.parse("tel:"+i)); call...
分类:
移动开发 时间:
2014-10-20 16:57:07
阅读次数:
209
Test test上面的代码Test是父类,TestChild1和TestChild2是子类,test1和test2分别是TestChild1和TestChild2的实例。一.带参数的prototype继承方法的问题//TestChild1.prototype = new Test(2, 3);.....
分类:
移动开发 时间:
2014-10-20 16:55:57
阅读次数:
242
环境:
XCode6.0.1
问题:
今天敲代码遇到这样一个问题,
extra argument 'forIndexPath' in call
代码中乍一看没什么问题,而且从这个错误提示中也看不出什么解决方法。
解决方法:
其实,出现这句话一定是代码有问题,要么是写法不符合这个版本的swift语法,要么是参数啊,什么的传递错了。
我今天就是因为参数传递的类型错了,但是没有报类型...
分类:
其他好文 时间:
2014-10-20 15:12:07
阅读次数:
583
方法一 overridePendingTransition(0,0)
void android.app.Activity.overridePendingTransition(int enterAnim, int exitAnim)
Call immediately after one of the flavors of startActivity(Intent) or finish to sp...
分类:
移动开发 时间:
2014-10-20 11:51:39
阅读次数:
226