Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

VJET/Typing Arrays with VJETDocs

In JavaScript there is the Array type. Below are examples of using JavaScript Array.

var browsers = ['Firefox', 'Chrome', 'Safari'] ; //< Array 
 var browsers = new Array('Firefox', 'Chrome', 'Safari') ; //< Array 
 var browsers = new Array() ; //< Array
 browsers[0] = 'FireFox' ;
 browsers[1] = 'Chrome' ;
 browsers[2] = 'Safari' ;

What elements you put in the array are up to you. In essence, any JavaScript object can be put in the array. In our previous examples it appears that we only want browser names in our Array. Actually we only want Strings from a typing standpoint. 

VJETDocs allows you to be very specific about what type you want your array to be. 


Array-Dimension = "[" "]" Ex: [] 

Array-Dimensions = one or more Array-Dimension's back to back

Ex: [][] or [][][] 

Array-Type: Limited-Type-Name Array-Dimensions 

Examples of a Vjet Array Type: String[] or Number[] or Date[][]or worker.Task[][][] 


An array with a single [] pairs is called a single dimension array. 

var out = vjo.sysout.println; 
 var scores = [91, 77, 84] ; //< Number[]
 var names = ['Mark', 'Sean', 'Juan'] ; //< String[] 
 for(var i = 0; i < 3; i++) {
    var name = names[i] ; //< String
    var score = scores[i] ; //< Number
    out(name + ": " + score)

console>
Mark: 91
Sean: 77
Juan: 84 

It is possible to define arrays of arrays; these are called multi-dimension arrays. Multi-dimension arrays are defined by how many consecutive [] pairs. The number of [] pairs is often referred to as the n-dimensional array. Thus [][] means a 2 dimensional array and [][][] means a 3-dimensional array and so on. For example [][] is a two-dimensional array. [][][] is a three dimensional array and so on.

Here is an example of a two dimensional array of Number.

var keys = [ //< Number[][]
 [1, 2, 3],
 [4, 5, 6],
 [7, 8, 9]
 ];
var total = 0 ; //< Number 
 for(var row = 0; row < 3; row++) {
 for (var col = 0; col < 3; col++) {
 total += keys[row][col] ;
 vjo.sysout.println('total: ' + total) ;

console> total: 45 

We can have arrays of native types and vjet types. We can even have arrays of functions (we haven't described them yet).  We can even have an array of type-reference (although it may not be too useful).

Copyright © Eclipse Foundation, Inc. All Rights Reserved.