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
- HTTP
- Android O
- 페이스북
- 배포
- Android O Preview
- 데이터 공유
- 안드로이드 개발 레벨업 교과서
- BLOCK
- 트위터
- xcode
- Google Cloud Messasing
- ios
- GCM
- In-app Billing
- 다른 앱에서 열기
- Google Cloud Messasging
- unreal
- contentprovider
- ios9
- Activity 수명 주기
- Unchecked Exception
- Push
- 카카오톡
- android studio
- AccountManager
- Android
- signing
- gradle
- NSURLConnection
- service
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