Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 안드로이드 개발 레벨업 교과서
- service
- Android O
- 페이스북
- unreal
- ios
- BLOCK
- contentprovider
- 배포
- In-app Billing
- Unchecked Exception
- Android O Preview
- Android
- 다른 앱에서 열기
- 트위터
- AccountManager
- Activity 수명 주기
- gradle
- GCM
- Push
- xcode
- Google Cloud Messasing
- NSURLConnection
- HTTP
- android studio
- 데이터 공유
- 카카오톡
- signing
- Google Cloud Messasging
- ios9
Archives
- Today
- Total
목록Collection (1)
노블의 개발이야기
[Android] Android O - Collection handling
Collection handling (컬렉션 처리) AbstractCollection.removeAll(null) 및 AbstraceCollection.retainAll(null)은 항상 NullPointerException을 발생시킵니다. 이전에는 컬렉션이 비어있을 때는 NullPointException이 발생하지 않았습니다. public class CollectionTest { @Test public void removeAll() throws Exception { ArrayList list = new ArrayList(); // list.add("a"); // list에 데이터가 있으면 API 24 이하에서는 NullPointException이 발생하지 않습니다. list.removeAll(null)..
Android
2017. 8. 11. 12:24