I have just started the Java. Please let me know what this statement says
class ABC{
transient Vector<int> temp[];
ABC(int max)
{
this.temp = new Vector [max];
}
Is it creating a vector of int which size is max?
I am C++ person.
|
I have just started the Java. Please let me know what this statement says
Is it creating a vector of int which size is max? I am C++ person. |
|||||||||||
|
|
That creates an array of Vector objects. The length of the array is whatever is passed in as "max". If you want a single Vector, leave off the []'s. A couple of changes are necessary to get the above code to compile.
|
|||
|
No, To create a Vector of initial capacity max you should
Note two things:
But let the API page do the talking
|
|||
|
|
|
Here is the javadoc for the Vector constructor in question. What you are most likely looking for is
|
|||
|
|
|
class ABC{ transient Vector<Integer> temp[]; ABC(int max) { this.temp = new Vector [max]; } read Integer instead of int. Yes it's working code. |
|||
|
|