
다운로드 페이지
자동화 앱 알고 다운로드 👇👇👇 https://play.google.com/store/apps/details?id=com.ogoons.algo 자기 전 폰 볼 때 눈을 편안하게!~ 누적 다운로드 50만 이상! 자매품 HALO도 있어요~...
![[Kotlin] optional + let을 통한 null 체크](https://ogoons.com/assets/img/posts/sleek_placehold.jpg)
[Kotlin] optional + let을 통한 null 체크
우리는 보통 null 체크하는 로직을 아래와 같이 구현합니다. fun letNullCheck(arg: String?) { if (arg != null) { Log.d("TEST", "if NotNull...

Git Basic - 자주 사용하는 Git Command 모음
$ git init 로컬 레포지토리 초기화 $ git add . 로컷에서 신규 추가된 파일 모두 tracked files로 추가 $ git...