物事の抽象的な説明
そのようなものの特徴や動作を説明します
オブジェクトはクラスのインスタンスです
コード実装: クラスを作成します
function peple(){ this.hp=0; this.act = 30; this.name = ""; this.x=0; this.y=0; this.move =function(x,y){ document.write(this.name+"正在移动到"+x+","+y); } this.eat=function(){ document.write("正在吃"); } }
クラスのインスタンス: オブジェクトを作成します
var p1 = new peple(); p1.name="阿达"; p1.hp = 100; p1.move(100,100); p1.move(22,200);
p1.fire = function(x,y){ document.write(this.name+"正在开火向"+x+","+y); p1.hp--; }
クラスの外で呼び出します関数の外で定義されている関数
p1.fire(00,00); p1.fire(43,22); p1.fire(66,88); document.write("hp="+p1.hp);
上記は、JavaScript 拡張チュートリアル - JS オブジェクト指向プログラミングの内容です。さらに関連する内容については、PHP 中国語 Web サイト (www.php.cn) に注目してください。