상세 컨텐츠

본문 제목

Introduction to Java 자바의 소개

codecademy 번역

by 알케이88 2020. 1. 6. 16:32

본문

 

Welcome to the world of Java programming!

Programming languages enable humans to write instructions that a computer can perform. With precise instructions, computers coordinate applications and systems that run the modern world.

 

Sun Microsystems released the Java programming language in 1995. Java is known for being simple, portable, secure, and robust. Though it was released over twenty years ago, Java remains one of the most popular programming languages today.

 

One reason people love Java is the Java Virtual Machine, which ensures the same Java code can be run on different operating systems and platforms. Sun Microsystems’ slogan for Java was “write once, run everywhere”.

자바 프로그래밍의 세계에 오신것을 환영합니다!

프로그래밍 언어들은 사람들이 컴퓨터가 실행 할 수 있는 명령어를 작성 할 수 있게 합니다. 정확한 명령을 통해 컴퓨터는 현대 세계를 운영 할 응용 프로그램과 시스템을 조정합니다. 

 

1995년에 Sun Microsystems사는 Java 프로그래밍 언어를 발표 하였습니다. Java는 단순하고 휴대성이 있으며, 안전하고, 단단합니다. 20년 전에 출시가 되었으나 Java는 오늘날 가장 인기 있는 프로그래밍언어중 하나 입니다. 

 

사람들이 Java를 좋아하는 이유 중 하나는 다른 운영체제와 플렛폼에서 동일한 Java 코드를 실행이 가능한 JVM(Java Virtual Machine)입니다. Sun Microsystems사의 슬로건은 

"단 한번의 작성, 어디서든 실행"입니다.

더보기

※JVM이란? Java Virtual Machine의 약자로써 자바 가상 머신의 약자 이다. JVM 의 역할은 자바 어플리케이션을 클래서 로더를 통해 읽어 들여 자바 API와 함께 실행 한다. JVM은 Java와  OS사이에 중개자 역할을 수행 하며 OS에 구애 받지 않고 재 사용이 가능하게 한다. 

Programming languages are composed of syntax, the specific instructions which Java understands. We write syntax in files to create programs, which are executed by the computer to perform the desired task.

Let’s start with the universal greeting for a programming language. We’ll explore the syntax in the next exercise.

프로그래밍 언어는 syntax*, Java가 이해하는 특정된 명령어로 구성이 됩니다. 우리는 파일에 syntax를 작성하여 원하는 작업을 수행하기 위해 컴퓨터에서 실행되는 프로그램을 만듭니다.

프로그래밍 언어에 있어 보편적인 인사부터 시작해 봅시다.

다음 연습에서 systax를 확인해 봅시다.

*syntax 컴퓨터 언어의 문법 (네이버 사전 출처)

 

INSTRUCTION

You’re looking at a computer program written in Java.

Run the code in the text editor to see what is printed to the screen.

Java로 작성된 컴퓨터 프로그램을 보고 있습니다.

text editor에서 화면에 출력된 내용을 보기 위해 코드를 실행하세요.

더보기
public class HelloWorld {
  public static void main(String[] args) {
    System.out.println("Hello World!");
  }
}

 

 

Codecademy에 저작권이 있음을 작성합니다.
https://www.codecademy.com/

'codecademy 번역' 카테고리의 다른 글

Semicolons and Whitespace(세미 콜론과 공백)  (0) 2020.01.16
Commenting Code 주석 코드  (0) 2020.01.08
Hello Java File!  (0) 2020.01.06
시작 하기에 앞서...  (0) 2020.01.06

관련글 더보기

댓글 영역