[JavaScript] Method Overriding
자바스크립트는 자바와는 다르게 기본적으로 메소드 오버라이딩을 지원하지 않는다. 때문에 사용자가 메소드 오버라이딩 소스를 만들어 적용해주어야 한다. function addMethod(object, name, fn){ var old = object[ name ]; object[ name ] = function(){ if ( fn.length == arguments.length ) return fn.apply( this, arguments ); else if ( typeof old == 'function' ) return old.apply( this, arguments ); }; } // Now setup the methods function Users(){ addMethod(this, "find", func..
Development
2010. 12. 27. 00:27
최근에 올라온 글
글 보관함
- Total
- Today
- Yesterday