-
Notifications
You must be signed in to change notification settings - Fork 0
/
5-6.html
52 lines (46 loc) · 1.28 KB
/
5-6.html
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<script>
<!-- 静的メンバ -->
var Gadget = function(){};
Gadget.isShiny = function(){
// 静的に呼び出すとthisの中身はコンストラクタ
// インスタンスで呼び出すとthisはオブジェクト
console.log(this);
return 'you bet';
};
// Prototypeにメソッドを追加
Gadget.prototype.setPrice = function(price){
console.log(this);
this.price = price;
};
console.log(Gadget.isShiny());
var iphone = new Gadget();
iphone.setPrice(500);
console.log(Gadget.setPrice); // undefined;
console.log(iphone.isShiny); // undefined;
// インスタンスでも静的メソッドを動かす
Gadget.prototype.isShiny = Gadget.isShiny;
console.log(iphone.isShiny()); // 'you bet';
// プライベートな静的メンバ
var PrivateGadget = (function(){
// 静的変数 / プロパティ
var counter = 0,
NewGadget ;
NewGadget = function(){
counter += 1;
};
NewGadget.prototype.getLastId = function(){
return counter;
};
// コンストラクタを上書き
return NewGadget;
}());
var ipad = new PrivateGadget();
console.log(ipad.getLastId()); // 1;
var ipod = new PrivateGadget();
console.log(ipod.getLastId()); // 2;
var iMac = new PrivateGadget();
console.log(iMac.getLastId()); // 3;
</script>
</html>