티스토리 뷰
http://stackoverflow.com/questions/3744479/jquery-how-to-write-classes-to-achive-oo-design
class 를 정의하는 3가지 방법.
http://www.phpied.com/3-ways-to-define-a-javascript-class/
Class method 와 Static method
http://stackoverflow.com/questions/1635116/javascript-class-method-vs-class-prototype-method
class 를 정의하는 3가지 방법.
http://www.phpied.com/3-ways-to-define-a-javascript-class/
1. 내부적으로 정의하는 법, 보통의 class 처럼.
2. Singleton 정의하는 방법
2. Singleton 정의하는 방법
2-1. JSON 을 이용하여 정의하는 방법.(JSON style 로 정의하는 방법)
2-2. function 을 이용하여 정의하는 방법.
2-2. function 을 이용하여 정의하는 방법.
Class method 와 Static method
http://stackoverflow.com/questions/1635116/javascript-class-method-vs-class-prototype-method
<html> <head> <script> function Test(a){ this.a = a; this.getA = function(){ return this.a; }; } Test.staticMethod = function(){ // This method has no relation with the Test() class, // so it can't use any members in the Test class return 1+1; }; alert(Test.staticMethod()); var t = new Test(1); alert(t.getA()); </script> </head> </html> |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- 편집프로그램
- 늙기
- 데크에 바인딩묶기
- 보드고글
- 인공눈
- network error
- 영귤
- 미스터피자주문
- breakpoint
- 스타치
- 샤워기전
- 인테리어
- 과학
- 의학
- 명언
- 상식
- icon program
- sudachi
- 무릎마사지
- 칠오름
- 고강도
- icon tool
- 칠오름농장
- 영귤차
- 그림편집
- 녹색농원
- 인공안구
- 제주녹색농원
- 대일농장
- 제주영귤
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함