티스토리 뷰

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/
1. 내부적으로 정의하는 법, 보통의 class 처럼.

2. Singleton 정의하는 방법
2-1. JSON 을 이용하여 정의하는 방법.(JSON style 로 정의하는 방법)
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
«   2025/01   »
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
글 보관함