/*
Factory 메소드 --- 생성 및 특정 유형 객체의 팩토리 함수 반환
*/
function createCar(color,doors,mpg){
var tempCar = new Object;
tempCar.color = color
tempCar. =doors;
tempCar.mpg = mpg;
tempCar.showCar = function(){
alert(this.color " "this.doors)
}
return tempCar; >}
/*
생성자 메서드 --- 생성자는 팩토리 함수와 매우 유사합니다.
*/
function Car(color,doors,mpg){
this . color = color;
this.doors = 문;
this.showCar = function(){
alert(this.color)
}
/*
프로토타입 방법---객체의 프로토타입 속성을 이용하면 새로운 객체가 생성되는 프로토타입이라고 볼 수 있습니다.
*/
function Car(color,doors , mpg){
this.color = color;
this.doors =doors;
this.mpg = mpg;
this.drivers = new Array("nomad","angel");
}
Car.prototype.showCar3 = function(){
alert(this.color)
}
/*
혼합 생성자/프로토타입 method --- 생성자를 사용하여 객체의 모든 비함수 속성을 정의하고, 프로토타입 메소드를 사용하여 객체의 함수 속성(메서드)을 정의합니다.
*/
function Car(sColor, iDoors, iMpg) {
this.color = sColor;
this.doors = iDoors;
this.mpg = iMpg;
this.drivers = new Array("Mike", "Sue")
Car.prototype.showColor = function () {
alert(this.color);
};
/*
동적 프로토타입 메서드 --- 생성자 내에서 함수가 아닌 속성을 정의합니다. , 함수 속성은 프로토타입 속성을 사용하여 정의됩니다. 유일한 차이점은 객체 메서드가 할당되는 위치입니다.
*/
function Car(sColor, iDoors, iMpg) {
this.color = sColor;
this.doors = iDoors;
this.mpg =
this. drivers = new Array("Mike", "Sue");
if (typeof Car._initialized == "undefine") {
Car.prototype.showColor = function () {
alert(this.color);
};
Car._initialized = true;
}
} //이 메서드는 플래그(_initialized)를 사용하여 프로토타입이 임의의 방법이 할당되었습니다.