분류 전체보기
-
객체 배열 예제JAVA 2022. 7. 19. 16:00
EX_01. 포켓몬 Game 1-1.Pokemon 설계 package Pokemon; public class Pokemon { // 포켓몬 설계도 // 1. 필드(속성, 데이터, 변수) private String name; private String type; private String skill; private int atk; private int hp; public Pokemon(String name, String type, String skill, int atk, int hP) { this.name = name; this.type = type; this.skill = skill; this.atk = atk; this.hp = hP; } public String getName() { return na..
-
OOP 예제JAVA 2022. 7. 19. 15:58
EX_01. BankBook 1-1. BankBook public class BankBook { //통장설계도면 만들기 //필드 //private >> 외부 클래스에서 접근이 불가능하게 하는 접근제한자 private int money; //메소드 public void deposit(int money) { this.money += money; //this 키워드 //-현재 설계도면(나 자신)을 지칭하는 키워드 //인스턴스 자신을 가리키는 키워드 } public void withdraw(int money) { this.money -= money; } public void showMoney() { System.out.println("잔액은"+money+"원 입니다."); } } 1-2. BankBookMain..
-
메소드 예제JAVA 2022. 7. 19. 15:56
EX_01. 2개의 양수를 받아 2개의 숫자 중 더 큰수를 반환하는 메소드 public class 메소드예제 { public static int LargerNumber(int a, int b) { return a>b?a:b; } public static void main(String[] args) { int num1 = 10; int num2 = 24; int result = LargerNumber(num1,num2); System.out.println("큰수확인 : "+result); } }
-
Android 실습 (11)Android 2022. 7. 19. 12:04
package com.example.ex_0719; import androidx.annotation.NonNull; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import android.os.Handler; import android.os.Message; import android.view.View; import android.widget.Button; import android.widget.TextView; public class MainActivity2 extends AppCompatActivity { TextView txt1, txt2; Button btn1, btn2..