상세 컨텐츠

본문 제목

Hello Java File!

codecademy 번역

by 알케이88 2020. 1. 6. 17:56

본문

Java runs on different platforms, but programmers write it the same way. Let’s explore some rules for writing Java.

In the last exercise, we saw the file HelloWorld.java. Java files have a. java extension. Some programs are one file, others are hundreds of files!

 

Inside HelloWorld.java, we had a class:

Java는 다른 플랫폼에서 실행되지만 프로그래머는 동일한 방식으로 작성합니다. Java 작성 규칙에 대해 알아봅시다. 

저번 연습 때에 HelloWorld.java 파일을 공부했었습니다. Java파일의 확장자는. java입니다. 어떤 프로그램은 하나의 파일로 되어 있고 또 어떤 프로그램은 수백 개의 파일로 구성되어있습니다. 

 

HelloWorld.java 내부에는 클래스가 있습니다. 

 

 

We’ll talk about classes more in the future, but for now think of them as a single concept.

The HelloWorld concept is: Hello World Printer. Other class concepts could be: Bicycle, or: Savings Account.

 

We marked the domain of this concept using curly braces: {}. Syntax inside the curly braces is part of the class.

 

Each file has one primary class named after the file. Our class name: HelloWorld and our file name: HelloWorld. Every word is capitalized.

 

Inside the class we had a main() method which lists our program tasks:

앞으로도 Class에 대해 더 이야기할 예정이지만, 지금은 하나의 개념으로 생각합니다.

HelloWorld의 개념은 Hello World Printer이다. 다른 클래스의 개념들은 Bycycle이나 Saving Account 가 될 수 있습니다.

 

중괄호'{}' 를 사용하여 이 개념의 도메인을 표시 했습니다. 중괄호 안의 구문은 클래스의 일부입니다.

 

각 파일은 파일 이름을 딴 하나의 기본 클래스가 있습니다. HelloWorld 클래스명과 파일명 모두 대문자 입니다. 

 

 

클래스 내부에는 프로그램 작업을 나열하는 main() 메소드가 있습니다. :

 

 

Like classes, we used curly braces to mark the beginning and end of a method.

public, static, and void are syntax we’ll learn about in future lessons. String[] args is a placeholder for information we want to pass into our program. This syntax is necessary for the program to run but more advanced than we need to explore at the moment.

 

Our program printed “Hello World” with the line:

 클래스와 마찬가지로, 중괄호를 사용하여 메서드의 시작과 끝을 표시합니다.

public, static 과 void는 뒤에서 배울 구문입니다. String[] args 는 프로그램에 전달하려는 정보에 대한 placeholder 입니다. 이 구문은 프로그램이 실행되려면 필요하지만 현재 우리가 탐구해야 하는 것보다 더 진보되어 있습니다.

 

 

Hello World를 한 줄로 출력했습니다.:

 

 

println is short for “print line”. We’ll use System.out.println() whenever we want a program to write a message to the screen. println은 "print line"의 줄임말입니다. 프로그램이 화면에 메세지를 쓰길 원할 때마다 System.out.println ()을 사용합니다.  

 

INSTRUCTION

The text editor has a file, HelloYou.java, that contains a HelloYou class with a main() method.

Inside main(), add a statement which prints Hello someName!, with your name replacing someName. Make sure to end the statement with a semicolon.

 

For example, if your name were “Maria,” the program would print Hello Maria!.

텍스트 애디터에는 Hello You 클래스에 main() 메서드가 있는 HelloYou.java 파일이 있습니다.

main() 안에 Hello someName!을 인쇄 하는 문장을 추가하고someName에 본인 이름으로 바꾸세요. 세미콜론으로 명령문을 끝내세요.

 

예를들면, 당신의 이름이 "Maria"라면, 프로그램은 Hello Maria!라고 출력이 되어야 합니다. 

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

 

 

 

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

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

Semicolons and Whitespace(세미 콜론과 공백)  (0) 2020.01.16
Commenting Code 주석 코드  (0) 2020.01.08
Introduction to Java 자바의 소개  (0) 2020.01.06
시작 하기에 앞서...  (0) 2020.01.06

관련글 더보기

댓글 영역