Java/chapter2 28

ch03 Bus

package ch03; public class Bus { //버스번호 //수입금 int busNumber; int money; public Bus(int busNumber) { this.busNumber = busNumber; } //this 자기자신 .은 클래스안으로 들어온다 //맴버변수와 지역변수를 구분해서 만들수있게 this를 사용한다. public Bus (int busNumber, int money) { this.busNumber = busNumber; this.money = money; } public void showInfo() { System.out.println("버스의 번호는 " + this.busNumber); } public void showmoney() { System.out.p..

Java/chapter2 2021.08.25

ch02 Student 메서드

package ch02; import java.util.Random; public class Student { //객체의 속성은 멤버 변수로, 객체의 기능은 메서드로 구현한다. int studentId; String studentName; String address; //메서드 정의 public void study() { System.out.println(studentName + "학생이 공부를 합니다."); } public void breakTime() { System.out.println(studentName + "학생이 휴식을 합니다."); } public void showInfo() { System.out.println(studentId + " , " + studentName + ", " + ad..

Java/chapter2 2021.08.23

ch01 FunctionTest

package ch01; public class FunctionTest { //메인 함수 (코드의 시작점) public static void main(String[] args) { //함수 사용해 보기 int result1 = add(100,50); System.out.println(result1); int result2 = add(200,300); System.out.println(result2); }//main //add 함수 생성 public static int add(int num1, int num2) { //int타입의 매개변수 //함수안에 사용하는 변수는 지역변수라고 부른다. int result; result = num1 + num2; return result; } } package ch01;..

Java/chapter2 2021.08.23

ch01 Warrior

package ch01; public class Warrior { //멤버 변수(상태) int height; int power; String color; String name; } package ch01; public class MainTest2 { //설계된 클래스를 사용하는 쪽 코딩 public static void main(String[] args) { Warrior w1 = new Warrior(); w1.height = 200; w1.power = 100; w1.name = "오크1"; w1.color = "초록색"; Warrior w2 = new Warrior(); //메모리에 올리다. w2.height = 100; w2.power = 50; w2.name = "미니전사"; w2.color =..

Java/chapter2 2021.08.23

ch01 Student

package ch01; public class Student { //상태(멤버 변수) int height; int weight; //문자열을 받는 데이터 타입 String name; }//class package ch01; public class StudentMainTest1 { //main함수 (코드의 시작점) public static void main(String[] args) { int num1 = 10; int num2 = 20; Student s1; //Student 참조 타입 s1란 변수를 선언 Student s2; //Student 참조 타입 s2란 변수를 선언 //Student 참조 타입 s1이란 변수를 서언 s1 = new Student(); //동적 메모리(JVM): new (heap..

Java/chapter2 2021.08.23