Microsoft® JScript Creating Your Own Objects |
JScript Tutorial Previous |
To create instances of an object, you must first define it by giving it properties and, if appropriate, methods. For instance, the following example defines a pasta object. Notice the keyword this, which you use to refer to the current object.
Once you've defined an object, you create instances of it with the new operator.function pasta( grain, grain2, width, shape, shapenum, extent, egg ) { this.length = 7; // Number of properties in the object, not including this one. this.grain = grain; // What grain is it made of? (string) this.grain2 = grain2; // Any other flour in it? (string) this.width = width; // How wide is it? (number) this.shape = shape; // What is the cross-section? (string) this.shapenum = shapenum; // Is it one of the registered shapes? (number) this.extent = extent; // How long is it? (number) this.egg = egg; // Does it have egg yolk as a binder? (Boolean) }
You can add properties to one instance of an object, to change that instance, but those properties do not become part of the definition of the object, and do not show up in other instances unless you specifically add them. If you want the extra properties to show up in all instances of the object, you must add them to the object definition.var spaghetti = new pasta("wheat", "", 0.2, "circle", 9, 30, true); var linguine = new pasta("wheat", "", 0.3, "oval", 17, 30, true);
// Additional properties for spaghetti. spaghetti.color = "pale straw"; spaghetti.drycook = 7; spaghetti.freshcook = 0.5; var chowFun = new pasta("rice", "", 3, "flat", , 12, false); /* Neither the chowFun object, the linguine object, nor the pasta object definition has the three extra properties given to the spaghetti object. */
It is possible to include methods in the definition of an object. The following example builds an object that consists of an array of strings, and a method. The method adds a string to the array, increasing its size in order to do so. Notice that this makes each instance of the object indefinitely extensible.
At this point, the contents of the array are as follows:function addItem(newItem) // Define a function to extend the list. { this.length += 1; // Increment the length of the array. this[(this.length-1)] = newItem; // Add the new item, maintaining item numbering. } function shoppingList(firstItem) // Define a "shopping list" object. { this.length = 2; // Number of properties in the object, not including this one. this.addItem = addItem; // Include the addItem function as a method. this[(this.length-1)] = firstItem; // The first item is numbered 1. } var myList = new shoppingList("Milk"); myList.addItem("Eggs"); // Use the method to add Eggs, which become item 2. myList.addItem("Breadfruit"); // Breadfruit becomes item 3.Note that the indexing is not exactly as you might expect it to be if it were handled in a strictly numeric way. If you execute a for...in loop on this array, the loop iterates in the order given here, and the loop variable has the initial value "length" rather than 0.
- myList[length] is 4
- myList[addItem] is the addItem function
- myList[1] is Milk
- myList[2] is Eggs
- myList[3] is Breadfruit
© 1997 by Microsoft Corporation. All rights reserved.
file: /Techref/language/jscript/js6.htm, 5KB, , updated: 1997/9/30 03:44, local time: 2024/10/31 23:22,
18.117.76.135:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://massmind.ecomorder.com/Techref/language/jscript/js6.htm"> Creating Your Own Objects</A> |
Did you find what you needed? |
Welcome to ecomorder.com! |
Welcome to massmind.ecomorder.com! |
.