Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- wap
- inner join
- asp함수
- JavaScript
- SPLIT
- sql업데이트
- 정규식
- VARIABLE
- injection
- VarType
- sql순위
- WML
- 한글입력체크
- javascript 한글입력체크
- array
- MSSQL보안
- FileSystemObject
- xmldom
- update
- 이미지가로길이
- instr
- 자바기초
- 인젝션
- 이미지세로길이
- ERD
- tempDB
- sql랭킹
- jdbc driver
- XML
- join
Archives
- Today
- Total
3초기억력
생성자 - 문제:인터넷가입정보 본문
//인터넷가입정보 클래스명
//필수-이름,아이디,pw
// 전화번호, 주소
//패스워드 변경
class SubscriberInfo{
String name;
String id;
String pw;
String phoneNum;
String address;
//이름, 아이디, pw
public SubscriberInfo(String name, String id, String pw) {
this.name = name;
this.id = id;
this.pw = pw;
}
//전부
public SubscriberInfo(String name, String id, String pw, String phoneNum, String address) {
super();
this.name = name;
this.id = id;
this.pw = pw;
this.phoneNum = phoneNum;
this.address = address;
}
void changePasswd(String pw2) {
System.out.println("기존비밀번호 : " + this.pw);
this.pw = pw2;
System.out.println("신규비밀번호 : " + this.pw);
}
@Override
public String toString() {
return "SubscriberInfo [name=" + name + ", id=" + id + ", phoneNum=" + phoneNum + ", address=" + address + "]";
}
}
public class exam_SubscriberInfo {
public static void main(String[] args) {
SubscriberInfo s1 = new SubscriberInfo("홍길동", "hong", "1234");
System.out.println(s1);
s1.changePasswd("abcd1234");
}
}
'자바_기초' 카테고리의 다른 글
상속 : 문제1)평균 클래스를 상속을 받아서 평균과 총점을 구하는 하위 클래스를 생성 (0) | 2019.05.27 |
---|---|
상속 : 부모클래스 -> 자식클래스 (0) | 2019.05.27 |
생성자 : 생성자를 이용한 인스턴스 복사 (0) | 2019.05.27 |
생성자 - 오버로딩 (0) | 2019.05.27 |
클래스 : 영화등급 점수 (0) | 2019.05.21 |
Comments