对事物的抽象描述
描述这类事物的特征和行为
对象是类的实例
代码实现:创建一个类
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中文网(www.php.cn)!
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号