Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Vectorインデックス 0 に以下を含む があります。
Vector
[0010004008, 000020, P, false, false]
その中の最初の要素の値を取得したい。
この場合、私は欲しいです0010004008。
0010004008
これまで私は使用してきました:
Vector aT = cp.getPlan(wc, prd, "Week", anArray); aT.elementAt(0);
どうすればいいですか?
Vector.get(0)が機能するはずです。
int value = (Integer) aT.get(0);