Hello.
I would like to ask some suggestions to the community.
In Arrays, we can implement a 2D array like:
String[][] testString = new String[][] {
{"1", "2", "6"},
{"4", "5", "3"}
};
How can I implement this in Vector? Or is that even possible?
I was doing it in Vector<Vector<>> manner but (obviously) it will not work. ^^;;
I want to include a code something like
...
if(variable.elementAt(i).elementAt(j).equals(something))
Sorry for the confusion.