본문 바로가기

WIL(What I Learned)

21.11.29 月

  • Print a type of Java variable
String name = theVariable.getClass().getSimpleName();

  • if 조건문에서 == 대신 .equals()를 쓰기도 한다.
  • String to Integer conversion Example.
int i=Integer.parseInt("200");

  • Primitive Data Types. The eight primitives defined in Java are int, byte, short, long, float, double, boolean, and char – those aren't considered objects and represent raw values.

'WIL(What I Learned)' 카테고리의 다른 글

Java Enhanced For Loop(자바 향상된 반복문)  (0) 2021.12.02
Push 전 Commit 메시지 변경하기  (0) 2021.11.30
21.11.26 金  (0) 2021.11.26
21.11.22 月  (0) 2021.11.22
자바정석 Chap.6 연습문제 답안 확인 모음  (0) 2021.11.19