SlideShare a Scribd company logo
PL
 in
 
 
Week01
 
Java?
조영호
 
snatcher@nhn.com
 
Java!
 
프로그래밍
 연습
 C/C#
 과정을
 
 
이수하셨다면
 
오늘
 배우는
 내용은
 아주
 쉽습니다
 
C
 
C#
 
Java
 
단순
 변환
 
C
C#
Java
Week1
 
To p i c s
 
JVM  Class
Convention
Data Type
String
Operation
Condition  Loop
Array
Hello World!
 
에디터를
 이용해
 코드
 작성
 
public	
  class	
  Hello	
  {	
  
	
  	
  	
  	
  public	
  static	
  void	
  main(String	
  []	
  args)	
  {	
  
	
  	
  	
  	
  	
  	
  	
  	
  System.out.println(Hello,	
  World!);	
  
	
  	
  	
  	
  }	
  
}	
  
Hello.java
Compile
 
Compile
javac Hello.java Hello.class
Execute
 
Execute
java Hello
Hello.class
Hello class의
 
main() 메서드를
 실행하라
 
World.class
Call
에디터를
 이용해
 코드
 작성
 
public	
  class	
  Hello	
  {	
  
	
  	
  	
  public	
  static	
  void	
  main(String	
  []	
  args)	
  {	
  
	
  	
  	
  	
  	
  	
  	
  System.out.print(Hello,	
  );	
  
	
  	
  	
  	
  	
  	
  	
  World.print();	
  
	
  	
  	
  }	
  
}	
  
Hello.java
World.java
public	
  class	
  World	
  {	
  
	
  	
  	
  public	
  static	
  void	
  print()	
  {	
  
	
  	
  	
  	
  	
  	
  System.out.println(World);	
  
	
  	
  	
  }	
  
}
Compile
 
Compile
javac Hello.java
Hello.java Hello.class
Compile
World.java World.class
CallWorld.print();
Execute
 
Execute
java Hello
Hello.class World.class
Call
Linking??
 
Dynamic Class Loading
 
Execute
java Hello
Hello.class World.class
Load Hello class
Dynamic Class Loading
 
Execute
java Hello
Hello.class World.class
Call
Load Hello class
World.print();
Load World class
Java Virtual Machine
 
Hello.class World.class
Load Hello class Load World class
JVM
OS
 
Hello.class World.class
Load Hello class Load World class
JVM
OS
 
Byte Code
(OS에
 독립)

More Related Content

PDF
Roles, Responsibilities, Collaborations
PDF
객체지향적인 도메인 레이어 구축하기
PDF
Domain Driven Design
PDF
Rich domain model
PPTX
정해균 포트폴리오
PDF
JUnit5 and TestContainers
PPTX
Unreal_GameAbilitySystem.pptx
PDF
애플리케이션 아키텍처와 객체지향
Roles, Responsibilities, Collaborations
객체지향적인 도메인 레이어 구축하기
Domain Driven Design
Rich domain model
정해균 포트폴리오
JUnit5 and TestContainers
Unreal_GameAbilitySystem.pptx
애플리케이션 아키텍처와 객체지향

What's hot (20)

PPTX
Computer Forensics (1).pptx
PDF
양승명, 다음 세대 크로스플랫폼 MMORPG 아키텍처, NDC2012
PDF
NDC2013 - 심리학으로 다시 보는 게임 디자인
PPTX
A search engine in a world of events and microservices - SF Pot @Meetic
PDF
[MGDC] 리눅스 게임 서버 성능 분석하기 - 아이펀팩토리 김진욱 CTO
PDF
DDD 구현기초 (거의 Final 버전)
PPTX
황규영 포트폴리오
 
PDF
20180726 AWS KRUG - RDS Aurora에 40억건 데이터 입력하기
PDF
Android Developer JeongJaeyun
PDF
Clean architecture
PDF
심예람, <프로젝트DH> AI 내비게이션 시스템, NDC2018
PDF
NDC2017 언리얼엔진4 디버깅 101 - 게임 기획자, 프로그래머가 버그와 만났을 때 사용할 수 있는 지침들
PPTX
Android - Phone Calls
PPTX
When to use composite primary keys
PDF
Reactive Java Microservices with Spring Boot and JHipster - Spring I/O 2022
PDF
홍성우, 게임 프로그래머는 어떻게 가르치나요?, NDC2018
PPT
Deploying java beans in jsp
PDF
fastlane을 이용하여 iOS/Mac 앱 관리하기
PDF
이무림, Enum의 Boxing을 어찌할꼬? 편리하고 성능좋게 Enum 사용하기, NDC2019
PPTX
[KGC2014] 두 마리 토끼를 잡기 위한 C++ - C# 혼합 멀티플랫폼 게임 아키텍처 설계
Computer Forensics (1).pptx
양승명, 다음 세대 크로스플랫폼 MMORPG 아키텍처, NDC2012
NDC2013 - 심리학으로 다시 보는 게임 디자인
A search engine in a world of events and microservices - SF Pot @Meetic
[MGDC] 리눅스 게임 서버 성능 분석하기 - 아이펀팩토리 김진욱 CTO
DDD 구현기초 (거의 Final 버전)
황규영 포트폴리오
 
20180726 AWS KRUG - RDS Aurora에 40억건 데이터 입력하기
Android Developer JeongJaeyun
Clean architecture
심예람, <프로젝트DH> AI 내비게이션 시스템, NDC2018
NDC2017 언리얼엔진4 디버깅 101 - 게임 기획자, 프로그래머가 버그와 만났을 때 사용할 수 있는 지침들
Android - Phone Calls
When to use composite primary keys
Reactive Java Microservices with Spring Boot and JHipster - Spring I/O 2022
홍성우, 게임 프로그래머는 어떻게 가르치나요?, NDC2018
Deploying java beans in jsp
fastlane을 이용하여 iOS/Mac 앱 관리하기
이무림, Enum의 Boxing을 어찌할꼬? 편리하고 성능좋게 Enum 사용하기, NDC2019
[KGC2014] 두 마리 토끼를 잡기 위한 C++ - C# 혼합 멀티플랫폼 게임 아키텍처 설계
Ad

Similar to [NHN NEXT] Java 강의 - Week1 (16)

PPTX
모던자바의 역습
PDF
[NHN NEXT] Java 강의 - Week2
PPTX
Safe int
PDF
C++ Programming - 12th Study
PDF
C++ Programming - 5th Study
PPTX
자바스터디 4
PDF
Let's golang
PDF
Scala overview
PPTX
하스켈 프로그래밍 입문 3
PDF
Python and rust 2018 pythonkorea jihun
PDF
C++ Programming - 9th Study
PDF
Windbg랑 친해지기
PPTX
Kotlin class
PDF
멀티플랫폼 앱 개발과 테스팅
PDF
모던자바의 역습
[NHN NEXT] Java 강의 - Week2
Safe int
C++ Programming - 12th Study
C++ Programming - 5th Study
자바스터디 4
Let's golang
Scala overview
하스켈 프로그래밍 입문 3
Python and rust 2018 pythonkorea jihun
C++ Programming - 9th Study
Windbg랑 친해지기
Kotlin class
멀티플랫폼 앱 개발과 테스팅
Ad

More from Young-Ho Cho (12)

PDF
[수정본] 우아한 객체지향
PDF
우아한 객체지향
PDF
[NHN NEXT] Java 강의 - Week4
PDF
[NEXT 프연 Week3] C# Data Type
PDF
[NEXT 프연 Week2] UNIX 명령어 간단하게 살펴보기
PDF
[NHN NEXT] Java 강의- Week3
PDF
[JWAP-2] DI & Spring
PDF
[NEXT 프연 Week1] Git 시작하기
PDF
[JWPA-1]의존성 주입(Dependency injection)
PDF
[NHN NEXT] 2014 NHN NEXT 창의체험
PDF
[PreSchool-1] 프로그래밍 '개념' 맛보기
PDF
도메인 주도 설계의 본질
[수정본] 우아한 객체지향
우아한 객체지향
[NHN NEXT] Java 강의 - Week4
[NEXT 프연 Week3] C# Data Type
[NEXT 프연 Week2] UNIX 명령어 간단하게 살펴보기
[NHN NEXT] Java 강의- Week3
[JWAP-2] DI & Spring
[NEXT 프연 Week1] Git 시작하기
[JWPA-1]의존성 주입(Dependency injection)
[NHN NEXT] 2014 NHN NEXT 창의체험
[PreSchool-1] 프로그래밍 '개념' 맛보기
도메인 주도 설계의 본질

Recently uploaded (20)

PDF
Wondershare Filmora 15 Crack With Activation Key [2025
PDF
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
PDF
top salesforce developer skills in 2025.pdf
PDF
Design an Analysis of Algorithms II-SECS-1021-03
PPTX
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
PDF
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
PDF
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PPTX
ai tools demonstartion for schools and inter college
PDF
How to Choose the Right IT Partner for Your Business in Malaysia
PPTX
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
PPTX
Odoo POS Development Services by CandidRoot Solutions
PPTX
Reimagine Home Health with the Power of Agentic AI​
PDF
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
PDF
Design an Analysis of Algorithms I-SECS-1021-03
PDF
AI in Product Development-omnex systems
PDF
Nekopoi APK 2025 free lastest update
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PPTX
Operating system designcfffgfgggggggvggggggggg
Wondershare Filmora 15 Crack With Activation Key [2025
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
top salesforce developer skills in 2025.pdf
Design an Analysis of Algorithms II-SECS-1021-03
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
Internet Downloader Manager (IDM) Crack 6.42 Build 41
ai tools demonstartion for schools and inter college
How to Choose the Right IT Partner for Your Business in Malaysia
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
Odoo POS Development Services by CandidRoot Solutions
Reimagine Home Health with the Power of Agentic AI​
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
Design an Analysis of Algorithms I-SECS-1021-03
AI in Product Development-omnex systems
Nekopoi APK 2025 free lastest update
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
Operating system designcfffgfgggggggvggggggggg

[NHN NEXT] Java 강의 - Week1