04 2014 档案
摘要://js 词法分析以及执行流程function a(b){ alert(b); function b() { alert(b); } b();}a(1);/* 词法分析期0:形成Active Object AO={}; 1: 1.1: 分析参数...
阅读全文
摘要://js继承function classA(msg){ this.age = 23; this.name = 'luowen'; if(typeof classA._initialed == 'undefined') classA.prototype.sayHi = ...
阅读全文
摘要:package com.luowen.test;public class DealLockTest { public static void main(String[] args) { Go g1 = new Go(true); Go g2 = new Go(false); Thread ...
阅读全文