Dokumentacja języka JavaScript 1.5:Obiekty:Function:call
z Mozilla Developer Center, polskiego centrum programistów Mozilli.
UWAGA: Tłumaczenie tej strony nie zostało zakończone.
Może być ona niekompletna lub wymagać korekty.
Chcesz pomóc? | Dokończ tłumaczenie | Sprawdź ortografię | Więcej takich stron...
Spis treści |
[edytuj] Podsumowanie
Allows you to call (execute) a method of another object in the context of a different object (the calling object).
| Metoda obiektu Function | |
| Zaimplementowane w: | JavaScript 1.3 |
| Wersja ECMA: | ECMA-262 edycja 3 |
[edytuj] Składnia
call(thisArg[, arg1[, arg2[, ...]]])
[edytuj] Parametry
-
thisArg - Parametr do wywołania obiektu.
-
arg1, arg2, ... - Argumenty dla obiektu.
[edytuj] Opis
You can assign a different this object when calling an existing function. this refers to the current object, the calling object.
With call, you can write a method once and then inherit it in another object, without having to rewrite the method for the new object.
[edytuj] Przykłady
[edytuj] Przykład: Zastosowanie call to chain constructors for an object
You can use call to chain constructors for an object, similar to Java. In the following example, the constructor for the product object is defined with two parameters, name and value. Another object, prod_dept, initializes its unique variable (dept) and calls the constructor for product in its constructor to initialize the other variables.
function product(name, value){
this.name = name;
if(value > 1000)
this.value = 999;
else
this.value = value;
}
function prod_dept(name, value, dept){
this.dept = dept;
product.call(this, name, value);
}
prod_dept.prototype = new product();
// since 5 is less than 100 value is set
cheese = new prod_dept("feta", 5, "food");
// since 5000 is above 1000, value will be 999
car = new prod_dept("honda", 5000, "auto");