Skip to content

ssorry123/Java

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Java


  • 기초 탄탄 Java 공부, 복습, 정리 -> this repo.
  • problem solving with java -> ProblemSolving repo.
    • 자바 라이브러리 위주로 풀이
  • 개인 or 팀, Java 프로젝트 -> other repo.


  • 이클립스 팁
    • 다양한 편리한 기능
    • 원하는 위치 -> 마우스 오른쪽 클릭 -> [Source]


  • 예약어
기본 데이터 타입 : boolean, byte, char, short, int, long, float, double
접근 지정자 : private, protected, public
클래스 관련 : class, abstract, interface, extends, implements, enum
객체 관련 : new, instanceof, this, super, null
메소드 관련 : void, return
제어문 관련 : if, else, switch, case, default, for, do, while, break, continue
논리값 : true, false
예외 처리 관련 : try, catch, finally, throw, throws
기타 : transient, volatile, package, import, synchronized, native, final, static, strictfp, assert
  • 정수, 실수 리터럴
10진수(소수점 없는) : 0, 1, 2
8진수 (0으로 시작)  : 01, -03
16진수 (0x or 0X)  : 0x5, 0xDDF2

10진수 실수(소수점 있는) : 0.33, -3.0
10진수 지수, 가수 (E or e) : 3E7, 3.14e-5


Refer

https://docs.oracle.com/en/java/javase/
이것이 자바다.(신용권)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published