今天遇到一个问题,如下图:假如你在一个BP的初始化脚本里用了"Get Player Character",编译BP时候就会遇到上述警告(Warning Function ' Get Player Character ' is unsafe to call in a construction scri...
分类:
其他好文 时间:
2014-10-22 00:30:47
阅读次数:
249
首先你得确定你所监视的服务器与你的测试机是在同一个局域网内,
监控windows系统:
1、监视连接前的准备工作
1)进入被监视windows系统,开启以下二个服务Remote Procedure Call(RPC) 和Remote Registry (开始—)运行 中输入services.msc,开启对应服务即可)。
2)在被监视的WINDOWS机器...
分类:
其他好文 时间:
2014-10-21 17:51:03
阅读次数:
136
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