Tags
- Intellij
- Android/iOS Developer
- c#
- postman html parse
- 좋은 개발자
- Android
- postman collection
- postman tests
- Unity
- Interaction developer
- 다빈치 리졸브
- solidity
- web developer
- 우수한 프런트 개발자
- postman automations
- Java
- postman
- UI/UX Engineer
- postman csv
- Front-end developer
- postman session
- LSL_Script
- postman collection variables
- emplace_back
- postman excel
- oracle
- 프런트엔드
- C++
- postman pre-request
- MFC
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Archives
- Today
- Total
david's daily developer note
[Java] Vector.toArray() 사용하기 본문
728x90
Vector 클래스에 있는 toArray() 함수는 백터 원소들을 배열로 리턴해 주는 Method
사용방법은 아래와 같습니다.
Vector v = new Vector();
v.add("hello");
v.add("hi");
1. Object[] 배열로 받는 방법
Object[] obj = (Object[])v.toArray();
2. 원소와 동일한 형으로 받는 방법
String[] arr = (String[])v.toArray(); 이렇게 하면 될것 같으데 java.lang.ClassCastException 이 발생함.
아래와 같이 해야 동일한 원소형의 배열로 받을 수 있음.
String[] arr = new String[v.size()];
arr = (String[])v.toArray(arr);
728x90
'[Develop] Language > JAVA' 카테고리의 다른 글
[Java] Char [] to Byte [] (0) | 2011.04.29 |
---|---|
[eclipse] 이클립스 초반 개발환경 설정. (0) | 2011.04.26 |
[Java] Vector 내 원소 정렬하기 (0) | 2010.10.05 |
[eclipse] 디버깅 (디버깅 단축키) (0) | 2010.09.10 |