0. 下载源码到本地 freeImage源码包下载网站 http://downloads.sourceforge.net/freeimage/FreeImage3170.zip wget http://downloads.sourceforge.net/freeimage/FreeImage3170 ...
分类:
系统相关 时间:
2020-06-25 09:34:58
阅读次数:
89
BDC中,日期输入格式不正确:可调用FM CONVERT_DATE_TO_EXTERNAL DATA:l_bdcfield LIKE bdcdata-fval."BDC field value. CLEAR l_bdcfield. CALL FUNCTION 'CONVERT_DATE_TO_EXT ...
分类:
其他好文 时间:
2020-06-25 09:34:37
阅读次数:
99
A long-distance telephone company charges its customers by the following rules: Making a long-distance call costs a certain amount per minute, dependi ...
分类:
其他好文 时间:
2020-06-24 18:10:26
阅读次数:
58
上次使用Selenium+Python还是好几个月前了 今天想再用一下,结果写个打开网站的小demo报错,报错如下: 检查了一下,查看报错日志,应该是chrome版本和driver版本不一致导致的。 于是要重新下载对应的新的driver版本。 1、查看自己chrome版本如下: 2、安装webdri ...
分类:
编程语言 时间:
2020-06-24 16:32:02
阅读次数:
77
改变this 的指向 1.call:参数1 this指向,参数2 任意类型 2.apply:参数1 this指向,参数2 数组 (参数一为null指向的是本身) 3.bind 绑定 3.var一个变量保存this指向 4.使用es6的箭头函数 s ...
分类:
其他好文 时间:
2020-06-24 15:57:00
阅读次数:
31
/** * Initialize your data structure here. */ var MyQueue = function() { this.stack1 = []; this.stack2 = []; }; /** * Push element x to the back of qu ...
分类:
其他好文 时间:
2020-06-24 11:45:42
阅读次数:
59
串口过滤 《Windows内核编程》,其代码的GitHub地址为: https://github.com/minglinchen/WinKernelDev/tree/master/comcap 1. 串口过滤思路 每一个串口在 Device\ 文件夹下都有一个对应的设备,每个设备及对应的一个设备栈; ...
分类:
其他好文 时间:
2020-06-24 10:37:02
阅读次数:
54
call 异步阻塞调用 fork 异步非阻塞调用,无阻塞的执行fn,执行fn时,不会暂停Generator put 相当于dispatch,分发一个action select 相当于getState,用于获取store中相应部分的state take 监听action,暂停Generator,匹配的 ...
The end of the school year is near and Ms. Manana, the teacher, will soon have to say goodbye to a yet another class. She decided to prepare a goodbye ...
分类:
其他好文 时间:
2020-06-23 21:45:00
阅读次数:
111
1003 Emergency (25分),几个城市之间的救援路径问题,实际上是一个带权重的Dijkstra算法 ...
分类:
其他好文 时间:
2020-06-23 21:11:29
阅读次数:
51