일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- version mismatch
- JavaScript
- 3d
- javscript
- PHP
- A-Frame
- array
- CI/CD
- AR
- EM6
- Three.js
- Node
- PDO
- Component
- WebXR
- promise
- JS
- vue
- WebVR
- vuetify
- bootstrap
- 상태관리
- aframe
- auth0
- npx
- vuex
- package-lock.json
- web
- VR
- vue-template-compiler
Archives
- Today
- Total
대가는 결과를 만든다
for문 사용 방법 중 두번째 방법 본문
반응형
List<EntityAnnotation> Texts = response.getResponses().get(0).getTextAnnotations();
for (EntityAnnotation Text : Texts) {
message.append(Text.getDescription());
message.append("\n");
}
for (EntityAnnotation Text : Texts) {
message.append(Text.getDescription());
message.append("\n");
}
Texts에 들어있는 값들을 하나씩 꺼내 Text에 대입한다는 의미이다. 간편하다!
일반적인 for문으로 쓴다면
for( int i = 0 ; i<Texts.size() ; i++){
Texts[i].getDescription();
}
이런식으로 사용했어야 한다. 코드가 간편해진다!
(물론 List뿐아니라 배열 등에 모두 사용가능)
'개발 > Java' 카테고리의 다른 글
arraylist관련 (0) | 2018.06.15 |
---|---|
메인 스레드에서 생성한 자식 스레드에서 처리한 리턴 값 받기 (0) | 2018.06.04 |
Comments