변수(22)
-
문자 자료형 char - VariableEx04.java
문자 자료형 char 문자표현을 위한 문자셋으로 자바에서는 유니코드 기반으로 표현하게 됩니다.(문자 하나를 2바이트로 표현하는 유니코드 기반으로 표현) 유니코드는 전 세계의 문자를 표현할 수 있는 코드 집합입니다. 문자는 작은 따옴표(')로 표현합니다. 문자는 char형 변수에 저장되고 저장 시 실제로는 유니코드 값 저장됩니다. 소스코드 public class VariableEx04 { public static void main(String[] args) { //컴퓨터는 문자를 표현할 수 없으므로 //2byte공간에 대응되는 문자의 유니코드 값으로 자동 변환됩니다. char ch1='A'; //'A'은 16진수로 0x41 char ch2='한'; //'한'은 16진수로 0xD55C char ch3=546..
-
VariableTypes.java-변수 자료형 확인
변수 자료형 확인 논리형 리터럴 문자형 리터럴 정수형 리터럴 실수형 리터럴 소스코드 public static void main(String[] args){ System.out.println("=========논리형 리터럴========="); boolean bool = true; //true, false System.out.println("bool = " + bool); //bool = 20; //boolean 타입외 데이터 저장시 Error남. System.out.println(""); System.out.println("=========문자형 리터럴========="); // 문자형 크기: 2byte(2byte 표현범위: 0~65,535), 다국어 처리를 위한 유니코드(Unicode)방식 char c..
-
변수 선언 / 변수 초기화 / 변수 사용-VariableEx01
변수 선언 / 변수 초기화 / 변수 사용 강의 내용 VariableEx.java//변수 선언 및 초기화 단계별로 >확인 //변수 선언과 초기화 동시 수행 >확인 //변수 선언만 하고 초기화 하지 않은 경우 >확인 소스코드public class VariableEx01 { public static void main(String[] args){ int num; //변수 선언 num = 20; //변수 초기화(최초 데이터 입력) System.out.println(num); //출력 int number = 30; //변수 선언과 초기화 System.out.println(number); //출력 //변수 선언만 하고 초기화 하지 않은 경우(Error) int no; //선언// System.out.println(n..
-
VariableEx01.java - 변수 선언 / 변수 초기화 / 변수 사용
변수 선언 / 변수 초기화 / 변수 사용 강의 내용 VariableEx.java//변수 선언 및 초기화 단계별로 >확인 //변수 선언과 초기화 동시 수행 >확인 //변수 선언만 하고 초기화 하지 않은 경우 >확인 소스 코드 public class VariableEx01 { public static void main(String[] args){ int num; //변수 선언num = 20; //변수 초기화(최초 데이터 입력)System.out.println(num); //출력 int number = 30; //변수 선언과 초기화System.out.println(number); //출력 //변수 선언만 하고 초기화 하지 않은 경우(Error)int no; //선언// System.out.println(no)..