理解JavaScript的caller,callee,call,apply
                            
                            
                                分类:
移动开发   时间:
2015-06-11 18:33:24   
                                阅读次数:
149
                             
                         
                    
                        
                            
                            
                                Early media refers to any media that is played to the initial caller’s phone before the remote party has picked up the phone. That “brrrrrrrring!” noi...
                            
                            
                                分类:
其他好文   时间:
2015-06-09 00:52:42   
                                阅读次数:
114
                             
                         
                    
                        
                            
                            
                                arguments该对象代表正在执行的函数和调用它的函数的参数。[function.]arguments[n]参数function :选项。当前正在执行的 Function 对象的名字。 n :选项。要传递给 Function 对象的从0开始的参数值索引。说明Arguments是进行函数调用 时,除...
                            
                            
                                分类:
移动开发   时间:
2015-05-17 10:36:19   
                                阅读次数:
236
                             
                         
                    
                        
                            
                            
                                实验一:new_del_caller工程(静态库)-new_del_caller.cpp1 #include 2 3 void new_del_caller()4 {5 char* p = new char[1];6 delete [] p;7 }new_del工程(控制台程序) -...
                            
                            
                                分类:
其他好文   时间:
2015-05-16 10:29:08   
                                阅读次数:
116
                             
                         
                    
                        
                            
                            
                                spring @Scheduled ,默认基于单线程执行,如果需要基于多线程执行,需要在配置文件中配置如下 
 
queue-capacity="500" rejection-policy="CALLER_RUNS" />
scheduler="scheduler" />
具体可以参考spring 帮助文档对annotation-driven的executor和sc...
                            
                            
                                分类:
编程语言   时间:
2015-04-25 01:41:49   
                                阅读次数:
1638
                             
                         
                    
                        
                            
                            
                                event对象IE 中可以直接使用 event 对象,而 FF 中则不可以,解决方法之一如下:var theEvent = window.event || arguments.callee.caller.arguments[0];第二种是将 event 作为参数来传递:function xxx(e)...
                            
                            
                                分类:
其他好文   时间:
2015-04-23 12:41:19   
                                阅读次数:
182
                             
                         
                    
                        
                            
                            
                                函数的作用域:调用对象 JavaScript中函数的主体是在局部作用域中执行的,该作用域不同于全局作用域。这个新的作用域是通过将调用对象添加到作用域链的头部而创建的(没怎么理解这句话,有理解的亲可以留言告诉我, 谢谢)。因为调用对象是作用域链的一部分,所以在函数体内可以把这个对象属性作为变量来访问....
                            
                            
                                分类:
编程语言   时间:
2015-04-18 12:44:22   
                                阅读次数:
133
                             
                         
                    
                        
                            
                            
                                callee是对象的一个属性,该属性是一个指针,指向参数arguments对象的函数首先我们来写个阶成函数: function chen(x){ if (x<=1) { return 1; } else{ return x*chen(x-1); }; };从这个函数中可以...
                            
                            
                                分类:
Web程序   时间:
2015-04-17 13:13:21   
                                阅读次数:
127
                             
                         
                    
                        
                            
                            
                                Spring Bean Scope In Spring, bean scope is used to decide which type of bean instance should be return from Spring container back to the caller. 5 types of bean scopes supported : singleton – Retu...
                            
                            
                                分类:
编程语言   时间:
2015-04-08 20:06:36   
                                阅读次数:
187
                             
                         
                    
                        
                            
                            
                                海宝建议用这个拼接软件http://www.broadinstitute.org/software/discovar/blog/?page_id=98DISCOVAR – variant caller 适合于call variant 和拼接小基因组DISCOVARde novo 适合拼接大基因组下载...
                            
                            
                                分类:
其他好文   时间:
2015-04-05 00:57:31   
                                阅读次数:
397