배열 선언 하는 법 var intArr:Array = arrayOf(1, 2, 3, 4) var intArr2 = arrayOfNulls(5) var anyArr : Array = arrayOf(1, "awd", 3.2, 4) 반복문 쓰는 법 for(i: Int in 1..10) print("$i ") //output : 1, 2, 3, 4, 5 ... 10 val len: Int = 5 for(i in 1..len) print("$i ") //output : 1, 2, 3, 4, 5 for(i in 1 until len) print("$i ") //output : 1, 2, 3, 4 for(i: Int in 1..10 step(2)) print("$i ") //output : 1, 3, 5, 7, 9 ..
import okhttp3.OkHttpClient import okhttp3.logging.HttpLoggingInterceptor import retrofit2.Retrofit import retrofit2.converter.gson.GsonConverterFactory object RetrofitBuilder { private fun getRetrofit():Retrofit { val httpLoggingInterceptor = HttpLoggingInterceptor() httpLoggingInterceptor.level = HttpLoggingInterceptor.Level.BODY val client = OkHttpClient.Builder(). addInterceptor(httpLoggingI..
private lateinit var vm: MainViewModel vm = ViewModelProvider(this).get(MainViewModel::class.java) 원래 이렇게 써야 하는데 kotlinOptions { jvmTarget = "1.8" } implementation 'androidx.activity:activity-ktx:1.1.0' implementation 'androidx.fragment:fragment-ktx:1.2.5' 이거 하면 private val vm: MainViewModel by viewModels() 이렇게 사용 가능
- Total
- Today
- Yesterday
- react native state
- 명령어
- 귀찮아;;
- mongo db
- 차번호 정규식
- https://medium.com/@limgyumin/%EC%BD%94%ED%8B%80%EB%A6%B0-%EC%9D%98-apply-with-let-also-run-%EC%9D%80-%EC%96%B8%EC%A0%9C-%EC%82%AC%EC%9A%A9%ED%95%98%EB%8A%94%EA%B0%80-4a517292df29
- ubunut 설치 link
- 차번호 정규표현식
- not found adb
- not working adb
- text 부분 색 칠하기
- https://hwan-shell.tistory.com/244
- spannableText
- Android
- rn
- ubunut android
- 클래스형 코드
- MongoDB
- insert
- 안드로이드
- mac android
- not starting .bash_profile
- adb 환경변수
- nosql
- 구글 맵 선그리기
- 데이터베이스
- React Native
- 함수형 코드
- 구글 맵 경로 그리기
- 자바
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |