/**
* 类对象
*/
function Father(name)
{
/**
* 私有属性:
*/
var wife = "嫦娥";
/**
* 公开属性
*/
this.name = "康熙";
/**
* 构造函数
*/
this._Father = function()
{
if(name) this.name = name;
console.log("Father的构造函数");
}
/**
* 私有方法
*/
var setMoney = function(num)
{
return num;
}
/**
* 公开方法
*/
this.eat = function(name)
{
return this.name+"喜欢吃:"+name;
}
this._Father();
}
/**
* 静态属性
*/
Father.car = "奥迪";
/**
* 静态方法
*/
Father.driveCar = function()
{
return Father.car;
}
网友评论