#region 注册RegApp public static void CheckRegApp(string regapptablename) { Database db = HostApplicationServices.WorkingDatabase; using ... ...
分类:
Web程序 时间:
2018-06-17 19:03:29
阅读次数:
209
1、编写native接口 2、根据native接口生成声明文件(.h) 3、编写接口代码调动so动态库(.c) 4、根据.h、.c编译生成so,如下makefie文件make生成libengine.so 5、java调用native接口 6、配置动态库路径 ...
分类:
其他好文 时间:
2018-06-17 17:53:57
阅读次数:
212
1、 #region 程序集 mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 // C:\Program Files (x86)\Reference Assemblies\Microsoft\Fr ...
分类:
Web程序 时间:
2018-06-17 11:09:22
阅读次数:
217
1、 #region 程序集 System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 // C:\Program Files (x86)\Reference Assemblies\Microsoft\Fram ...
分类:
Web程序 时间:
2018-06-16 21:47:56
阅读次数:
274
public partial class Form1 : Form { #region u盘属性 public const int WM_DEVICECHANGE = 0x219;//U盘插入后,OS的底层会自动检测到,然后向应用程序发送“硬件设备状态改变“的消息 public const int ... ...
从去除毛刺的策略看开运算opening_circle和闭运算closing_circle的异同 例一:毛刺在往外凸的面上 策略1:分割出黑色部分,然后通过开运算去掉毛刺,再通过原黑色部分区域减去开运算之后的区域,得到毛刺部分的区域。 1 read_image (Tu, 'C:/Users/xiahu ...
分类:
其他好文 时间:
2018-06-14 21:44:07
阅读次数:
264
1,Array ,ArrayList,List<类型> 数组, 连续分配的,查询速度快,但增删不方便 #region 链表 2,LinkedList<类型>,LinkedListNode<类型> 链表 ,非连续分配,每个元素都有前后节点,找元素只能遍历,查找不方便,增删容易 3,Queue<T> 队 ...
完美区分UTF-8,与UTF8 without BOM以及其他编码 最少4个byte ...
By default, TensorFlow maps nearly all of the GPU memory of all GPUs (subject to CUDA_VISIBLE_DEVICES) visible to the process. This is done to more ef ...
引用自:http://baijiahao.baidu.com/s?id=1582812185263227836&wfr=spider&for=pc 一、多参数选择 pipeline{ agent { label '192.168.0.156' } parameters{ choice(name:'t ...
分类:
其他好文 时间:
2018-06-11 11:56:54
阅读次数:
1042