Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
docs:programming:javascript:objects [2007/07/15 21:50] – billh | docs:programming:javascript:objects [2008/08/03 00:25] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== | + | ====== |
- | ===== An Object ===== | + | * objects are created with the " |
- | An object | + | * constructors for objects are simply functions |
+ | * the " | ||
+ | * property variables | ||
+ | ===== Creating an object ===== | ||
+ | ===== using Object() ===== | ||
<code javascript> | <code javascript> | ||
- | var Image1 | + | var dog = new Object(); |
- | Image1.src = "myDog.gif"; | + | dog.name = "fido"; |
+ | dog.weight = 50; | ||
+ | dog.color = "Brown"; | ||
</ | </ | ||
- | you have in fact created | + | ===== using a constructor ===== |
<code javascript> | <code javascript> | ||
- | function | + | function |
} | } | ||
- | var myObject | + | var dog = new animal(); |
- | alert(typeof myObject); | + | |
</ | </ | ||
- | We've just created out own object. In fact we've created a myFunc object. myFunc() is a constructor | + | ===== using a constructor with arguments ===== |
<code javascript> | <code javascript> | ||
- | function | + | function |
- | return 5; | + | this.name = name; |
+ | this.weight = weight; | ||
+ | this.color = color; | ||
} | } | ||
- | var myObject | + | var dog = new animal(" |
- | alert(typeof myObject); // displays " | + | |
</ | </ | ||
- | In this case, we've assigned 5 to myObject. So, what's the difference between these two scripts? Answer: the new keyword. It tells JavaScript to create an object following the blueprint set forth in the myFunc() constructor function. In fact, when we create an Image object, we do the same thing, except that instead of using our own constructor function, we use one of JavaScript' | + | ===== using shortcut brackets ===== |
- | + | ||
- | So far, we've learned how to create a constructor function, and how to create an object from that constructor function. In our example, we've created a myFunc() constructor and created an instance of the myFunc object, which we assigned to the variable myObject. | + | |
- | + | ||
- | This is all fine and dandy, but what's the point? Well, just like our Image object, myObject can be assigned properties: | + | |
<code javascript> | <code javascript> | ||
- | function myFunc(){ | + | var dog = {name:"fido", weight:50, color:" |
- | } | + | |
- | + | ||
- | var myObject = new myFunc(); | + | |
- | myObject.StringValue | + | |
- | alert(myObject.StringValue); | + | |
</ | </ | ||
- | And voila, we've now created a property for our object. However, if we create another instance of the myFunc object (using the myFunc() constructor function), we also have to assign the StringValue property to this new instance. For example: | + | ===== See Also ===== |
- | + | * [[copy prototype]] | |
- | <code javascript> | + | |
- | function myFunc(){ | + | |
- | } | + | |
- | + | ||
- | var myObject | + | |
- | myObject.StringValue | + | |
- | var myObject2 | + | |
- | alert(myObject2.StringValue); | + | |
- | </ | + | |
- | + | ||
- | So, how can we create properties that exist for all myFunc objects? Within the myFunc() constructor function, we can do just that. The this keyword inside a constructor function refers to the object that's being created. Example: | + | |
- | + | ||
- | <code javascript> | + | |
- | function myFunc(){ | + | |
- | | + | |
- | } | + | |
- | + | ||
- | var myObject | + | |
- | var myObject2 | + | |
- | alert(myObject2.StringValue); | + | |
- | </ | + | |
- | + | ||
- | Now, all myFunc objects will have a StringValue property, assigned with the initial value of "This is a String", | + | |
- | + | ||
- | <code javascript> | + | |
- | function myFunc(){ | + | |
- | | + | |
- | } | + | |
- | + | ||
- | var myObject | + | |
- | myObject.StringValue | + | |
- | var myObject2 | + | |
- | alert(myObject.StringValue); | + | |
- | alert(myObject2.StringValue); | + | |
- | </ | + | |
- | + | ||
- | We can also achieve similar results if we pass arguments to our constructor function: | + | |
- | + | ||
- | <code javascript> | + | |
- | function myFunc(StringValue){ | + | |
- | | + | |
- | } | + | |
- | + | ||
- | var myObject = new myFunc(" | + | |
- | var myObject2 = new myFunc(" | + | |
- | alert(myObject.StringValue); | + | |
- | alert(myObject2.StringValue); | + | |
- | </ | + | |
- | + | ||
- | In the myFunc() constructor, | + | |
- | + | ||
- | ===== Object Methods ===== | + | |
- | In addition to properties, objects can have methods. An object' | + | |
- | + | ||
- | <code javascript> | + | |
- | function Circle(radius){ | + | |
- | | + | |
- | } | + | |
- | + | ||
- | var bigCircle = new Circle(100); | + | |
- | var smallCircle = new Circle(2); | + | |
- | </ | + | |
- | + | ||
- | Now, let's define some functions that we might use: | + | |
- | + | ||
- | <code javascript> | + | |
- | function getArea(){ | + | |
- | | + | |
- | } | + | |
- | + | ||
- | function getCircumference(){ | + | |
- | var diameter = this.radius*2; | + | |
- | var circumference = diameter*3.14; | + | |
- | | + | |
- | } | + | |
- | </ | + | |
- | + | ||
- | Note that if you were going for accuracy, you could use Math.PI instead of 3.14, but we'll use this simplified representation of pi to keep the numbers in our examples nice and round. | + | |
- | + | ||
- | These functions are easy, except for one thing: what does this.radius refer to? this always refers to the current object, in this case, the Circle object. So this.radius refers to the radius property of the Circle object. So, how do we attach these functions to our object? It's not as hard as you might think. Let's change our Circle() constructor: | + | |
- | + | ||
- | <code javascript> | + | |
- | function Circle(radius){ | + | |
- | | + | |
- | | + | |
- | | + | |
- | } | + | |
- | </ | + | |
- | + | ||
- | The above assigns the functions getArea and getCircumference to our Circle object, making them methods—functions belonging to our Circle object. We can use methods just like any normal function, but we must first access the object in which the method is encapsulated: | + | |
- | + | ||
- | <code javascript> | + | |
- | alert(bigCircle.getArea()); | + | |
- | alert(bigCircle.getCircumference()); | + | |
- | alert(smallCircle.getArea()); | + | |
- | alert(smallCircle.getCircumference()); | + | |
- | </ | + | |
- | + | ||
- | + | ||
- | ===== Keeping Things Tidy ===== | + | |
- | Let's say we want to keep all our properties and methods in the same place - in the Circle() constructor function. There are many ways to do this. Let's first examine inner functions. An inner function is a function within a function (say that sentence quickly ten times!). Here's what they let us do: | + | |
- | + | ||
- | <code javascript> | + | |
- | function Circle(radius){ | + | |
- | | + | |
- | | + | |
- | } | + | |
- | | + | |
- | var diameter = this.radius*2; | + | |
- | var circumference = diameter*3.14; | + | |
- | | + | |
- | } | + | |
- | this.radius = radius; | + | |
- | this.getArea = getArea; | + | |
- | this.getCircumference = getCircumference; | + | |
- | } | + | |
- | </ | + | |
- | + | ||
- | It's the same code, except that we've moved the functions. Now, inside our two functions, instead of this.radius, | + | |
- | + | ||
- | <code javascript> | + | |
- | function Circle(radius){ | + | |
- | | + | |
- | | + | |
- | } | + | |
- | | + | |
- | var diameter = radius*2; | + | |
- | var circumference = diameter*3.14; | + | |
- | | + | |
- | } | + | |
- | | + | |
- | | + | |
- | | + | |
- | } | + | |
- | </ | + | |
- | + | ||
- | Ok, now let's change the radius of an object and get its area: | + | |
- | + | ||
- | <code javascript> | + | |
- | bigCircle.radius=50; | + | |
- | alert(bigCircle.getArea()); | + | |
- | </ | + | |
- | + | ||
- | But wait! It returns 31400, rather than the expected 7850. What's wrong? Well, radius refers to the value we passed to the Circle() constructor function, not the value of the object. So when we change the object' | + | |
- | + | ||
- | Ok, so now we've created a self-contained object constructor - the function that defines an object. Let's look at another way we can create functions inside our Circle() constructor: | + | |
- | + | ||
- | <code javascript> | + | |
- | function Circle(radius){ | + | |
- | | + | |
- | | + | |
- | | + | |
- | } | + | |
- | | + | |
- | var diameter = this.radius*2; | + | |
- | var circumference = diameter*3.14; | + | |
- | | + | |
- | } | + | |
- | } | + | |
- | + | ||
- | var bigCircle = new Circle(100); | + | |
- | var smallCircle = new Circle(2); | + | |
- | + | ||
- | alert(bigCircle.getArea()); | + | |
- | alert(smallCircle.getCircumference()); | + | |
- | </ | + | |
- | + | ||
- | Here, we've encountered another way to define a function. We can use: | + | |
- | + | ||
- | <code javascript> | + | |
- | functionName = function([parameters]){ | + | |
- | // function body | + | |
- | } | + | |
- | </ | + | |
- | + | ||
- | In this way, we can create parameters: | + | |
- | + | ||
- | <code javascript> | + | |
- | functionName = function(parameter1, | + | |
- | // | + | |
- | } | + | |
- | </ | + | |
- | While functions aren't created this way very often, when we're creating objects, they can be useful shortcuts. These processes also help avoid conflicts with function names. For instance, another object can have a different function with the same name, for example getArea(), without causing a conflict. This is possible because these functions are encapsulated inside an object constructor. |