Array Constructor

guftafs_at_aol.com
Date: 12/31/04


Date: 31 Dec 2004 09:41:33 -0800

Hello,

Let's say you have a class like the following:

class Blub {
String s;
Boolean b;
...

Can you create an array constructor?
...
public Blub[] ( String[] st, Boolean[b] bo ) {
...
}
...
}

that you could call in the following manner:

public static void main ( String[] args ) {
Blub[] bl = new Blub[] ( ... );
...
}

Peter