java - Specific instance of a vector of objects into a array of strings -


I'm trying to convert an array of strings to a specific example of your object vector. The object vector includes ints, doubles and strings, but I want to get only one string example of vector so that it can be converted into an array and I am running into issues. This is one of the ones I have tried.

  string [] tempNameA = new string [dogParkProgramMain.infoVector.size ()]; For (int x1 = 0; x1 & lt; dogParkProgramMain.infoVector.size (); x1 ++) {tempNameA [x1] = dogParkProgramMain.infoVector.elementAt (x1) .getFName (). Get (x1) .toString (); }  


Comments

Popular posts from this blog

import - Python ImportError: No module named wmi -

Editing Python Class in Shell and SQLAlchemy -

c# - MySQL Parameterized Select Query joining tables issue -