[자바]Java#01 프로그래밍이란?
프로그래밍이란?컴퓨터에게 일을 시키는 명령의 집합.명령의 문법이 잘 맞는지 확인하고, 컴퓨터가 이해할 수 있는 언어로 번역한다. //이것을 컴파일이라고 한다결국 프로그래밍이란 명령의 집합과 컴파일된 결과물까지 포함된다.전체 구조상 class안에 method안에 statement가 있다.public class helloworld{ // classpublic static void main(String[] args) //methodfor(int i =1;i
Java/이론설명
2021. 2. 9. 19:10