When sending a document to SAP, or making a RFC or BAPI call you may get this error:Microsoft.ServiceModel.Channels.Common.XmlReaderGenerationExceptio...
分类:
其他好文 时间:
2014-10-10 20:04:44
阅读次数:
224
在VS2010中的一项新功能:Call Hierarchy窗口,它可以审查代码,确定方法在哪里调用,以及它们与其他方法的关系。打开一个类文件,找有方法体实现代码的方法,右键选择View Call Hierarchy菜单项,将显示如下图示例所示的窗口:调试和重构代码时,这个窗口是非常有用的,因为它允许...
分类:
其他好文 时间:
2014-10-10 18:10:34
阅读次数:
165
在学习新的东西时候,碰到以前看过而又不理解,或则记忆不深的地方不妨回头看看书里知识点,有助于加深理解。正所谓--温故而知新。 废话不多说,直接上代码: 第一节:一个简单的例子 function add(a,b){ console.log(a+b); } ...
分类:
移动开发 时间:
2014-10-10 17:29:44
阅读次数:
130
在xcode6中 苹果地图得定位方法修改了,以前得不能用了
报错说明:Trying to start MapKit location updates without prompting for location authorization. Must call -[CLLocationManager requestWhenInUseAuthorization] or -[CLLocationMa...
分类:
移动开发 时间:
2014-10-10 14:35:34
阅读次数:
200
一直以来,我们操作SQLITE,都是基于PHP默认的SQLITE操作模块。
今天介绍一个可以操作SQLITE2,和SQLITE3的PHP类,此为我封装的。
<?php
abstract class Db{
public static function factory($type){
return call_user_func(array($type , 'getInstanc...
分类:
数据库 时间:
2014-10-10 11:56:24
阅读次数:
283
Implementing a system call in Kernel 2.6.32 is somehow different fromthe method in Kernel 3.10.56.In kernel 2.6.32, we should register the system call...
分类:
其他好文 时间:
2014-10-10 07:04:24
阅读次数:
218
Just a JokeDescription Here is just a joke, and do not take it too seriously. Guizeyanhua is the president of ACMM, and people call him Presid...
分类:
其他好文 时间:
2014-10-10 00:34:21
阅读次数:
408
ret指令,相当于 pop IP;修改IP的内容,从而实现近转移retf指令,相当于 pop IP pop CS;修改CS和IP的内容,从而实现远转移--------------CPU执行call指令时,进行两步操作:1、将当前的IP或者CS和IP压入栈中;2、转移call指...
分类:
其他好文 时间:
2014-10-10 00:01:57
阅读次数:
309
【如何降低Unity程序的Drawcall】 Unity can combine a number of objects at runtime and draws them together with a single draw call. This operation is called “ba....
分类:
其他好文 时间:
2014-10-09 22:00:07
阅读次数:
1796
工作中很多涉及到多线程的地方都implemnets Runable 接口 或者是 extends Thread 抽象类,但是这样子的话得不到返回值。
如果以下场景:
在多线程中计算值,线程结束后需要携带返回值。
这时就需要Callable接口,实现改接口后需要实现方法 call 。改接口需要ExecutorService的submit方法执行,执行结果包装在 Future泛型类中。
通过Future类的get()方法取得返回值,get()是阻塞的,在线程执行前调用get()方法会一直阻塞着。...
分类:
其他好文 时间:
2014-10-09 20:44:17
阅读次数:
214