참조 사이트 2 : http://bonsaiden.github.io/JavaScript-Garden/ko/
위 사이트에 가서 보면 정말 상세히 공부할 수 있음 ^^
참조 사이트 2 : http://9eye.net/entry/Scope-In-Javascript
위 사이트에 가서 보면 쉬운 예제로 보다 편하게 공부할 수 있음(개인적으로 참조 사이트 2 추천)
밑에 내용은 참조 사이트 2에서 몇개를 복사해 왔습니다. ^^
Properies와 Methods가 포함된 함수(예제 1)
function MakeCounter(initialNumber, steps) { initialNumber = initialNumber || 0; steps = steps || 1;
var thisObj = {};
// Properties thisObj.StartingValue = initialNumber; thisObj.name = ""; thisObj.currentCounter = initialNumber;
// Methods function SetName(value) { thisObj.name = value; } function GetValue() { return thisObj.currentCounter; } function SetValue(value) { thisObj.currentCounter = value; } function Inc() { thisObj.currentCounter += steps; } function Dec() { thisObj.currentCounter -= steps; } function Print() { thisObj.currentCounter.print(thisObj.name); } var methods = { "SetName": SetName, "GetValue": GetValue, "SetValue": SetValue, "Print": Print, "Inc": Inc, "Dec": Dec };
for (var name in methods) thisObj[name] = methods[name]; return thisObj; } |
> Counter: 105
예제 1 함수를 상속받는 함수
function MakeImprovedCounter(initialNumber, steps) { var thisObj = MakeCounter(initialNumber, steps); thisObj.SetName("Improved");
thisObj._superInc = thisObj.Inc; thisObj.Inc = function(steps) { if (steps == undefined) thisObj._superInc(); else { thisObj.currentCounter += steps; } }
thisObj._superDec = thisObj.Dec; thisObj.Dec = function(steps) { if (steps == undefined) thisObj._superDec(); else { thisObj.currentCounter -= steps; } }
thisObj.Initialize = function() { thisObj.SetValue( thisObj.StartingValue ); }
return thisObj; } var imCounter = MakeImprovedCounter(100, 20); |
> Improved: 110
'기타 > 프로그래밍 관련' 카테고리의 다른 글
Eclipse PHP Debug 가능하게 설정하기(PDT 이용) (0) | 2014.04.07 |
---|---|
전자정부프레임워크 SELECT JSON 처리 (0) | 2014.02.19 |
이클립스 코드 자동 정렬 (0) | 2013.12.10 |
이클립스 Search 시에 기존 Search 창 닫히는거 새창으로 나오게 하기 (1) | 2013.12.04 |
tar 압축시 디렉토리 예외 처리 (0) | 2013.12.03 |