Vector based on Array : Vector « Data Type « JavaScript DHTML

JavaScript DHTML
1. Ajax Layer
2. Data Type
3. Date Time
4. Development
5. Document
6. Dojo toolkit
7. Event
8. Event onMethod
9. Ext JS
10. Form Control
11. GUI Components
12. HTML
13. Javascript Collections
14. Javascript Objects
15. Javascript Properties
16. jQuery
17. Language Basics
18. Mochkit
19. Mootools
20. Node Operation
21. Object Oriented
22. Page Components
23. Rico
24. Scriptaculous
25. Security
26. SmartClient
27. Style Layout
28. Table
29. Utilities
30. Window Browser
31. YUI Library
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
JavaScript DHTML » Data Type » Vector 
Vector based on Array


<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<TITLE></TITLE>
<SCRIPT language="JavaScript">

// Vector Class

// Constructor
function Vector(size) {
  if (size == 0) {
    size = 10;
  }
  this.theArray = new Array(size);
  this.index = 0;

}

// size() -- returns the size of the vector
function size() {
  return this.theArray.length;
}

// getElement() -- returns the current element
function getElement() {
  if (this.theArray != null) {
    return this.theArray[index];
  }
}

// getLastElement() -- returns the last element
function getLastElement() {
  if (this.theArray{this.theArray.length - 1!= null) {
    return this.theArray[this.theArray.length - 1];
  }
}

// getFirstElement() -- returns the first element
function getFirstElement() {
  if (this.theArray[0!= null) {
    return this.theArray[0];
  }
}

// addElement() -- adds a element at the end of the Vector
function addElement(vObject) {
  if(this.theArray.length == this.index) {
    resize(10);
  }
  
  this.theArray[index= vObject;
}

// addElementAt -- adds a element at a certain index of the Vector
function addElementAt(vObject, i) {
  while (this.theArray.length <= i) {
    resize(10);
  }
  
  this.theArray[i= vObject;
}

// removeElementAt() -- removes and returns the element at a certain index  
function removeElementAt() {
  
}

// removeAllElements() -- removes all elements in the Vector
function removeAllElements() {
  delete this.theArray
}

// resize() -- increases the size of the Vector
function resize() {

}

// toString() -- returns a string rep. of the Vector
function toString() {

}

</SCRIPT>
</HEAD>

           
       
Related examples in the same category
1. To have a dynamic collection instead of using arrays when the total quantity is unknown
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.