데이터(45)
-
정수 - 정수의 표현(양의 정수 기준), 정수의 표현(음의 정수 기준)
정수
-
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)..
-
SharedPreferencesDemo-SharedPreferences객체를 통한 데이터 저장하기
SharedPreferences객체를 통한 데이터 저장하기 강의 내용 activity_main.xml LinearLayout(Vertical) 변경 Graphical Layout > Form Widgets-TextView 추가 Graphical Layout > Form Widgets-Button추가 Graphical Layout > Form Widgets-Button추가 Graphical Layout > Form Widgets-Button추가 Graphical Layout > Text Fields-Plain Text 추가 Graphical Layout > Form Widgets-ProgressBar(Normal) 추가 Graphical Layout > Composite-ListView 추가 Graphic..
-
Intent(인텐트)
인텐트 인텐트란 애플리케이션의 컴포넌트, 구체적으로 말하자면 액티비티, 서비스, 브로드캐스트리시버에게 작업을 요청하기 위해 필요한 데이터를 전달해주는 메시지에 해당하는 '전달 객체'로 보통 '인텐트 객체'라고 합니다. 인텐트 생성 명시적 인텐트 (Explicit Intent)호출 대상 컴포넌트의 이름이 명시되어 있는 인텐트 즉, 어떤 것을 호출해야 할지 명시되어 있는 인텐트 new Intent(Context packageContext, class cls); ex) new Intent(this,SampleActivity.class)암시적 인텐트 (Implicit Intent)호출 대상 컴포넌트가 정확히 정해진 것이 아니라, 호출 대상 컴포넌트의 특성만 나열되어 있는 인텐트 new Intent(String ..