Collection(컬렉션)자바에서 '목록성 데이터를 처리하는 자료구조'를 통칭합니다. 자료구조(Data Structure)는 어떤 정보를 담는 것을 의미하여, 하나의 데이터가 아닌 여러 데이터를 담을 때 사용하는 것이다. 배열이 가장 기본적인 자료구조이며, DTO 또한 자료를 담는 하나의 방식이라고 볼 수 있다.* 전체를 역순으로 재정렬Collections.reverse(list);* 특정 인덱스끼리 순서 바꾸기Collections.swap(list, index1, index2);
The Double class wraps a value of the primitive type double in an object. An object of type Double contains a single field whose type is double. In addition, this class provides several methods for converting a double to a String and a String to a double, as well as other constants and methods useful when dealing with a double. 1. double 형 숫자를 String으로 변환 String strTemp = Double.toString(1.23456..
안드로이드 개발에 있어서 기본적으로 사용되는 메세지를 띄우는 방법입니다. 아래 한 줄 코드를 가지고 쉽게 메세지를 바로 띄울 수 있습니다. 설정으로는 짧게 노출과 길게 노출 두 가지로 설정할 수도 있습니다. import android.widget.Toast; Toast.makeText(this, "여기에 메세지를 작성해주세요.", Toast.LENGTH_SHORT).show(); * LENGTH_SHORT : 짧게 노출* LENGTH_LONG : 길게 노출* fragment 이용시 this 대신 getActivity()를 사용한다.
import android.content.Intent;import android.content.IntentFilter; Intent bat = registerReceiver(null, new IntentFilter(Intent.ACTION_BATTERY_CHANGED)); String battLevel = bat.getIntExtra("level", -1)+"%"; TextView textView = (TextView)findViewById(R.id.textView4);textView.setText( "배터리 : " + battLevel );
- Total
- Today
- Yesterday
- 집꾸미기
- IT트렌드
- 뇌과학
- 업무효율
- Android
- 스마트홈
- 집중력높이는법
- 자기계발
- 프로그래밍
- 음성
- 라이프스타일
- 안드로이드
- 리빙스타일
- CES2026
- 코딩
- 공간스타일링
- 건강관리
- 최적화
- 인테리어트렌드
- 마음챙김
- ai
- 바이러스
- 미래기술
- 동영상
- 피디에스박스
- 프로그램
- 다운로드
- 도파민
- 생활과학
- 개발
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
