1차원 배열문제
import java.util.Scanner; public class q5_6 { public static void main(String[] args) { // TODO Auto-generated method stub String[] words = { "television","computer","mouse","phone"}; Scanner scanner = new Scanner(System.in); //toCharArray를 사용함으로써, //question에는 {'t','e','l','e','v','i','s','i','o','n'}가 가게된다 for(int i=0; i
2022. 8. 9.
인터페이스 / 지역변수 / 인스턴스변수(전역변수,필드,멤버)
interface Flyable{ void fly(int x ,int y, int z); } //추상클래스로 이루어진 인터페이스 class PPigeon implements Flyable{ private int x,y,z; //인스턴스변수 (전역변수 선언) //지역변수 x,y,z public void fly(int x, int y, int z) { printLocation(); // 해당 메소드 불러와서, 기존 인스턴스변수 초기화 값 0,0,0사용 System.out.println("이동합니다"); this.x = x; this.y = y; this.z = z; // 인스턴스 변수에 지역변수 값을 넣음 printLocation(); // 인스턴스 변수에 담긴 값(지역변수 1,2,3)을 // princtL..
2022. 8. 6.