📄 person.js
字号:
/**
* 人类
*/
function Person(){
}
/**
* 人类也是动物
*/
Person.prototype = new Animal();
/**
* 钓鱼
*/
Person.prototype.fish = function(){
this.bait = new Bait(this);
}
/**
* 收获
*/
Person.prototype.acquisition = null;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -