码迷,mamicode.com
首页 >  
搜索关键字:caller    ( 319个结果
Sublime Text Code Visualization Plugin
Using this plugin one can navigate the code easily. Source code and detailed user manual in https://github.com/league1991/CodeAtlasSublime . Find Call ...
分类:其他好文   时间:2017-01-19 07:51:23    阅读次数:293
getline c实现
Linux的实现在toolchain里边,所以这里直接copy苹果的实现,这样对于内存分配处理就清楚了。/* getline.c -- Replacement for GNU C library function getline Copyright (C) 1993 Free Software Fo... ...
分类:其他好文   时间:2017-01-17 12:40:36    阅读次数:438
ESLint规则配置说明
1 "no-alert": 0,//禁止使用alert confirm prompt 2 "no-array-constructor": 2,//禁止使用数组构造器 3 "no-bitwise": 0,//禁止使用按位运算符 4 "no-caller": 1,//禁止使用arguments.call... ...
分类:其他好文   时间:2017-01-07 07:56:04    阅读次数:183
Beginning Scala study note(9) Scala and Java Interoperability
1. Translating Java Classes to Scala Classes Example 1: Example 2: Example 3: Example 4: Example 5: Translating Java imports to Scala imports: Example ...
分类:编程语言   时间:2017-01-07 01:25:53    阅读次数:178
SQL数字转英文函数
-- 数字转英文 -- ============================================= -- Author: qianjin036a -- Create date:06/14/2008 02:27:17 -- Description:Arabic numerals to ... ...
分类:数据库   时间:2017-01-03 15:09:30    阅读次数:319
uC/OS-II标志(flag)块
/*********************************************************************************************************** uC/OS-II* The Real-Time Kernel* EVENT FLA ...
分类:其他好文   时间:2016-12-29 03:15:06    阅读次数:205
页面的键盘事件
document.onkeydown=function(event){ var e = event || window.event || arguments.callee.caller.arguments[0]; if(e && e.keyCode==13){ // enter 键 } }; ...
分类:其他好文   时间:2016-12-21 20:49:52    阅读次数:179
javascript --学习this
this 在一般的强类型语言中,this指向的是这个对象本身,可在javascript中 this的取值是执行上下文环境的一部分 其实这个this并不是很难立即,只要记住二点就可以了 那就是谁caller(调用者是谁this指向的就是谁),如果有赋值语句就改变类型 我们来看几个例子就知道了 在这里第 ...
分类:编程语言   时间:2016-12-21 16:28:37    阅读次数:204
ThreadPoolExecutor源码分析
引言为什么引入线程池技术?对于服务端的程序,经常面对的是执行时间较短、工作内容较为单一的任务,需要服务端快速处理并返回接口。假若服务端每次接收到一个任务,就创建一个线程,然后执行,这种方式在原型阶段是...
分类:其他好文   时间:2016-12-13 13:55:55    阅读次数:292
React java.lang.UnsatisfiedLinkError: dlopen failed: "/data/data/com.edaixi.activity/lib-main/libgnustl_shared.so" is 32-bit instead of 64-bit
解决方案: 出错手机是CPU为64位的,修改后,正常运行,React 页面正常显示. ...
分类:编程语言   时间:2016-12-12 13:51:32    阅读次数:1870
319条   上一页 1 ... 16 17 18 19 20 ... 32 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!