Primitive type, Reference type
✅ Primitive type int, long, double, boolean save value itself int A = 10; ✅ Reference type class is reference type String save memory value Student student = new Student(); stud...
✅ Primitive type int, long, double, boolean save value itself int A = 10; ✅ Reference type class is reference type String save memory value Student student = new Student(); stud...
✅ Why do we need class? collect each student’s charecteristics in one class create one student class and save one student’s name, age, grade in one class there is int type, String...
✅ CICD settings nohup해서 실행했을 때 잘 실행되는 상태 .github안에 workflows라는 파일 만들고 이 안에 cd.yml 파일 생성 test controller도 하나 있으면 변경되는 내용 확인하기에 좋음 @Slf4j @RestController public class TestController ...
✅ Requirements 인덱스가 있으면 검색 속도 향상에 도움이 됨 검색하고 싶은 것은 두 종류 user name index goal title index ✅ 참고자료 DB조회 최적화 방법, index 설정 방법, explain 사용 방법 https://wanglan.tistory.com/entry/Spri...
🔴 Permission Denied(public key, password) ✅ Reference Permission Denied(public key) PasswordAuthentication yes, SSH 재시작 https://overpassion.tistory.com/174 Permission Denied(pu...
✅ Deployment upload my service on network so other users can access my service through ingernet ✅ EC2 Elastic Compute Cloud borrow one computer/server from AWS storage: 30GB, gp3 ...
✅ Disk Structure ✔️ logical block 디스크의 외부에서 보는 디스크의 단위 정보 저장 공간 주소를 가진 1차원 배열처럼 취급 정보를 전송하는 최소 단위 CPU는 logical block에 명령을 내리고(track번호, sector번호에 대해서는 모름) ✔️ sector logical b...
✅ File and File System named collection of related inforamtion 일반적으로 involataile 보조기억장치에 저장(Harddisk에 저장) file은 이름으로 접근(🆚 메모리는 주소로 접근) OS는 다양한 저장장치를 file이라는 동일한 논리적 단위로 볼 수 있게 해 줌 Fi...
✅ JSCODE 모의면접을 신청하고 시작하게된 계기 네트워크 면접을 했었는데, 그 때 경험이 도움이 많이 되어 이번에 신청하게 되었습니다. ✅ JSCODE 모의면접 스터디를 마무리하며 개인적으로 성장한점, 느낀점 작성 두괄식으로 답변하는 습관이 생겼습니다. 시간이 오래 걸리지만, 할 수 있다는 자신감이 좀 생겼습니다. ✅ Ke...
✅ Dynamic Relocation 🆚 Dynamic Loading 🆚 Dynamic Linking Dynamic Relocation: runtime에 logical address에서 physical address로 address binding이 일어나는 것 Dynamic Loading: 프로그램이 실행되면 통째로 메모리에 load되는 ...