| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- 데이터베이스
- sql
- job
- html
- 시큐어코딩
- spring boot
- Grafana
- 웹개발자
- vite
- coding test
- 자바
- servlet
- MVC패턴
- SpringFramework
- Doit알고리즘코딩테스트
- 웹 보안
- react
- jsp
- 웹개발기초
- CSS
- Spring MVC
- BCIT
- 모니터링
- DevOps
- MSA
- Bambino
- Java
- 웹개발
- 서버 모니터링
- two pointers
- Today
- Total
목록basic (2)
초보 개발자의 기록
#include header file library. Header files add functionality to C programs White space C ignores white space. multiple lines makes the code more readable. main() main() is called a function. Any code inside its curly brackets {} will be executed Esxape sequence New lines \n It forces the cursor to change its positio to the beginning of the next line on the screen. To insert a new line, use the \..
- Java는 정적 유형의 객체 지향 언어 - 모든 변수와 매개 변수가 정의된 유형을 가져야 함 - 객체 지향 (Object-Oriented) 은 data와 function이 Object로 그룹화 된것을 의미 = 메서드(method) - Java코드는 가상시스템(Java Virtual Machine)에서 바이트 코드로 컴파일됨 - JVM은 GC(Garbage Collection) 처리하며, 모든 OS 혹은 하드우어에서 컴파일하고 실행할 수 있게 해줌 - Java는 표준 기능과 함께 번들로 제공되며, 호스트 플랫폼과 독립적이어야 함 - Java는 JRE(Java Runtime Environment) +JDK (Java Development Kit) 두 가지 패키지로 제공 - JRE: Java를 실행하기 위..