Cox.js 它是在标準原生 JavaScript 基礎之上對 JavaScript 使用的擴充
Cox.js 可以應用于浏覽器環境與Node.js。
Cox.js 使用異步加載和面向對象的方式使得開發js程式變成一件很輕松的事情。
如何擷取Cox.js
http://git.oschina.net/Joye/cox-js
https://github.com/maolion/Cox.js
開始學習Cox.js
1.XFunction
var F1 = XFunction( function(){
//..
} );
F1.define( String, function( s1 ){
//....
} );
F1.define(
String, Optional( String ), Boolean, Optional( Number ), Params( Object ),
function( a1, a2, a3, a4, a5 ){
//...
}
);
F1();
F1( "Hello" );
F1( "A", "B", true, 1, [], {}, 0, true, "abc" );
F1( "A", true, {}, 0, "cba" );
XFunction讓js實作重載的能力。
轉載于:https://www.cnblogs.com/longhuang/p/3718353.html