#研究

《安全协议形式化分析工具比较与研究 》-------摘抄整理

  Scyther软件是瑞士苏黎世大学CassCremers开发的形式化分析工具,该工具对于无限会话以及无限状态集合的协议可以给出明确的终止,并且支持多协议的并行分析,Scyther系列的工具包括Scyther和Scyther-Compromise(在我得论文中使用的是Scyther-Comprom...

FreeSWITCH 之 uuid_transfer 研究

uuid_transfer<uuid>[-bleg|-both]<dest-exten>[<dialplan>][<context>]可选参数:-bothuuid_transfer<uuid>-both'set:hangup_after_bridge=fals...

J2EE学习中一些值得研究的开源项(转)

这篇文章写在我研究J2SE、J2EE近三年后。前3年我研究了J2SE的Swing、Applet、Net、RMI、Collections、IO、JNI……研究了J2EE的JDBC、Sevlet、JSP、JNDI…..不久我发现这些好像太浮浅了:首先,我发现自己知道的仅仅是java...

sleep和wait的区别--转载(没太细看,说的大概是对的,有时间仔细研究一下)

参考文章:from:http://nneverwei.javaeye.com/blog/494280http://zhidao.baidu.com/question/75503928.html?fr=ala0 1、这两个方法来自不同的类分别是,sleep来自Thread类,和wait来自Object类。sle...

js深入研究之扩展类,克隆对象,混合类(自定义的extend函数,clone函数,与augment函数)

1.类扩展/*EditInPlaceField类*//*扩展函数*/functionextend(subClass,superClass){varF=function(){};F.prototype=superClass.prototype;subClass.prototype=newF();subClass.prot...

js深入研究之自定义混合Mixin函数

<scripttype="text/javascript">/*增加函数*/functionaugment(receivingClass,givingClass){for(methodNameingivingClass.prototype){if(!receivingClass.prototype[meth...

js深入研究之克隆,属性,数组,对象,函数

代码<scripttype="text/javascript">/*克隆原型得到对象*/functionclone(object){functionF(){}F.prototype=object;returnnewF;}varPerson={name:'defaultname',getName:functi...

js深入研究之无法理解的js类代码,extend扩展

<scripttype="text/javascript">functionPerson(name){this.name=name;}Person.prototype.getName=function(){returnthis.name;}functionAuthor(name,books){Person....

js深入研究之神奇的匿名函数类生成方式

<scripttype="text/javascript">varBook=(function(){//私有静态属性varnumOfBooks=0;//私有静态方法functioncheckIsbn(isbn){if(isbn==undefined||typeofisbn!='string'){return...

js深入研究之牛逼的类封装设计

<scripttype="text/javascript">varBook=function(newIsbn,newTitle,newAuthor){//implementsPublication//私有属性varisbn,title,author;//私有方法functioncheckIsbn(isbn)...

js深入研究之函数内的函数

第一种functionfoo(){vara=10;functionbar(){a*=2;}bar();returna;} 第二种functionfoo(){vara=10;functionbar(){a*=2;returna;}returnbar;} 两种效果相同。调用结果varbaz=foo();...
代码星球 ·2020-04-06

js深入研究之初始化验证

<scripttype="text/javascript">varBook=function(isbn,title,author){if(!this.checkIsbn(isbn)){thrownewError('Book:InvalidISBN.');}this.isbn=isbn;this.title=...

js深入研究之Person类案例

<scripttype="text/javascript">/*定义一个Person类*/functionPerson(name,age){this.name=name;this.age=age;}/*添加两个方法getNamegetAge*/Person.prototype={getName:functi...
代码星球 ·2020-04-06

js深入研究之匿名函数

/*匿名函数*/(function(){varfoo=10;varbar=2;alert(foo*bar);})();/*匿名函数,带参数*/(function(foo,bar){alert(foo*bar);})(10,2);/*匿名函数返回值*/varbaz=(function(foo,bar){returnfoo...
代码星球 ·2020-04-06

js深入研究之类定义与使用

js可以定义自己的类很有意思<scripttype="text/javascript">varAnim=function(){alert('nihao');};Anim.prototype.start=function(){alert('start');};Anim.prototype.stop=funct...
首页上一页...89101112...下一页尾页