DevYoon
[Java] 데이터와 연산 본문
데이터와 연산
public class study //classname {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}
study ➡️ 파일명과 동일해야 한다
ex) Datatype.java ➡️ public class Datatype { }
"Hello World" ➡️ 'Hello world'는 동작하지 않음
- 큰 따옴표(") : 문자열(String)을 감싸는 기호, 즉 문자 여러 개 입력
- 작은 따옴표(') : 문자(Character)를 감싸는 기호, 즉 문자 하나만 입력
public class study {
public static void main(String[] args) {
System.out.println(6); // Number
System.out.println("six"); // String
System.out.println("6"); // String
System.out.println(6+6);
System.out.println("6"+"6"); // 66
//System.out.println("6"*"6"); // 불가능 -> 문자열 곱하기 불가
System.out.println("1111".length()); // 문자열 길이, 숫자는 길이 알려주는 기능 X
}
}
- 문자열+문자열 ➡️ 가능
- 문자열*문자열 ➡️ 불가능
- 문자열.length() ➡️ 문자열의 길이 반환
- 숫자.length() ➡️ 불가능
🍯 sout ➡️ ctrl+space 하면 System.out.println 자동완성🥳