Computer Webmaster Gaming Console Graphics Forum

Welcome to the Computer Webmaster Gaming Console Graphics Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

MK PitStop Main Earn $25 Earn Money Posting Extras Members Blogs Image Hosting User Pages
Go Back   Computer Webmaster Gaming Console Graphics Forum > Webmaster Forum > Website Coding > JavaScript
Register FAQ/Rules Become A V.I.P. Member Search Today's Posts Mark Forums Read

JavaScript JavaScript are you needing help with functions in your script, free help is offered here for all JavaScript problems so if you have an JavaScript error in your code just ask.

Google
Reply
 
LinkBack Thread Tools Display Modes
Old 07-01-2007, 4:38 PM   #1
Dr.Tulip
 
Dr.Tulip's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default Trying to create a meaningful data structure in Java, got problem.

Hi there,

I tried to create a meaningful data structure in JavaScript, and I didn't
seem to be able to find the right syntax or perhaps this is not supported:

The only thing I can come up with is not nice but it's working:

EX:

sqldata = new Array(1..n);

or

MaxElement = 12;

sqldata = new Array(Array(1..n1), Array(1..n2), MaxElement) ;

So to subscribe/view MaxElement, I have to do something like this:

sqldata[2]

Instead of:
sqldata.MaxElement


Using enum is not accepted in Javascript. Any one knows a different way I
can try? Using a Class didn't seem to work neither.


Thanks for your suggestion.



 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Reply With Quote
Old 07-01-2007, 4:38 PM   #2
Tom Mountney
 
Tom Mountney's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default Trying to create a meaningful data structure in Java, got problem.

Don't know if you have a solution yet...

From my experience using a class is the way to define a data structure.

Here is a simple example (nothing fancy for sure - certainly needs
improvement especially managing the vector declaration) that creates 3 data
structures and adds them to a vector. Then it searches the vector for a
match.

import java.util.*;

/**
* vec.java
*/
public class vec {

Vector x = new Vector();

public vec(){
//add some data structures to the vector
abc aBC = new abc();
aBC.name = "Me";
aBC.place = "Here";
x.add(aBC);
abc xYZ = new abc();
xYZ.name = "Too Much";
xYZ.place = "Much";
x.add(xYZ);
abc dEF = new abc();
dEF.name = "Far Out";
dEF.place = "There";
x.add(dEF);

//clean up a little
aBC = null;
xYZ = null;
dEF = null;

/* get a value from the vector...*/
abc z = getItem("Me");
if (z != null) {
System.out.println(z.name + " " + z.place);
} else {
System.out.println("No Match");
}
z = null;

/* get a value from the vector - doesn't exist!!...*/
abc y = getItem("Mee");
if (y != null){
System.out.println(z.name + " " + z.place);
}else{
System.out.println("No Match");
}
}

public abc getItem(String c){
int i;
abc d = null;

for (i = 0; i < x.size();i++){
d = (abc)x.get(i);
if (d.name.equals(c)){
break;
}
}

if (i == x.size()) {
//didn't find match
d = null; // d would have value of last element of vector so
null it
}
return d;
}

// The data structure
private class abc {

String name = new String();
String place = new String();

}


public static void main(String[] args) {

vec y = new vec();
}
}

"Dr.Tulip" <Dr.Tulip@hotmail.com> wrote in message
news:LbSdneuiGY5iZaTfRVn-gA@comcast.com...
> Hi there,
>
> I tried to create a meaningful data structure in JavaScript, and I didn't
> seem to be able to find the right syntax or perhaps this is not supported:
>
> The only thing I can come up with is not nice but it's working:
>
> EX:
>
> sqldata = new Array(1..n);
>
> or
>
> MaxElement = 12;
>
> sqldata = new Array(Array(1..n1), Array(1..n2), MaxElement) ;
>
> So to subscribe/view MaxElement, I have to do something like this:
>
> sqldata[2]
>
> Instead of:
> sqldata.MaxElement
>
>
> Using enum is not accepted in Javascript. Any one knows a different way I
> can try? Using a Class didn't seem to work neither.
>
>
> Thanks for your suggestion.
>
>
>



 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Reply With Quote
Featured Websites
Free Space
Free Space
Free Space Free Space
Reply
Tags: , , , , , ,




Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Problem with form data not being posted to another page Eric Dillard PHP 3 07-01-2007 4:14 PM
PHP problem retrieving data Wm PHP 5 07-01-2007 3:22 PM
MYSQLDUMP, Create new database, before restoring SQL Data. Frank PHP 1 07-01-2007 2:53 PM
Problem: How to create text output to a specified table? Richard HTML 6 07-01-2007 1:05 PM
Create account problem Otto Console Subjects 5 06-26-2007 12:43 AM


Featured Websites




All times are GMT +1. The time now is 5:18 AM.


Powered by: vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.0.0
Cheap Computers
MK PitStop Copyright 2005 - 2008

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98