목록2024/07/11 (2)
The Debugging Chronicles : "코드의 미학"
//함수 추가 전체코드package poketmon;//함수 추가 전체코드import java.util.*;class Poketmon { String name; // 포켓몬 이름 String type; // 포켓몬 속성타입 int exp; // 현재 경험치 int level; // 등급 static Random rand = new Random(); //랜덤 함수 생성 Poketmon(String type, String name) { // 멤버변수 초기화 설정 this.name = name; this.type = type; this.exp = 0; this.level = Poketmon.rand.nextInt(5) + 1; } void hello() { System.out.println("나..
몇일간의 조원들과의 회의와 코드 리뷰를 통해서 다음과 같이 코드가 변경되었다. //함수 추가 전체코드import java.util.*;class Poketmon { String name; // 포켓몬 이름 String type; // 포켓몬 속성타입 int exp; // 현재 경험치 int level; // 등급 String sound; // 울음소리 String skill; // 공격기술 static Random rand = new Random(); //랜덤 함수 생성 Poketmon(String type, String name, String sound, String skill) { // 멤버변수 초기화 설정 this.name = name; this.type = type; this.exp = ..