목록JAVA/함수호출 (2)
백지부터 시작하는 이세계 코딩 생활
setter, getter
package note; class MakeClassEx { int x; int y; int sum; } class People { int num; String name; String phone; // setters 매서드와 getters 매서드 사용해보기. private int number; private String nameN; private String phoneP; // setter public void setnumber(int number) { this.number = number; } public void setnameN(String nameN) { this.nameN = nameN; } public void setphoneP(String phoneP) { this.phoneP = phoneP..
JAVA/함수호출
2020. 8. 9. 02:15
함수 호출
public class callByFunction2 { public callByFunction2() { // 컨트롤 + 스페이스를 눌러서 만들기를 활성화 후 생성할 수 있다. // do-whilefunction test. doWhileTset2(); }// end callByFunction2 private void doWhileTset2() { char ch = 'A'; do { System.out.println(ch); ch = (char) (ch + 1); // 형변환 해줌. // 형변환 없이 하는 방법: ch++; } while (ch
JAVA/함수호출
2020. 8. 9. 01:48