일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- SPLIT
- update
- VARIABLE
- 이미지세로길이
- WML
- 인젝션
- JavaScript
- javascript 한글입력체크
- VarType
- asp함수
- 한글입력체크
- sql업데이트
- sql랭킹
- jdbc driver
- xmldom
- FileSystemObject
- MSSQL보안
- inner join
- join
- 자바기초
- instr
- 이미지가로길이
- XML
- 정규식
- tempDB
- injection
- ERD
- sql순위
- array
- wap
- Today
- Total
목록분류 전체보기 (384)
3초기억력
//기본 : 모델명, 번호, 벨소리 //생성자 생성 //기능 : set number, get model, get chord // 추가 : 사이즈 // 추가 : pixel package Inheritance; class Cellphone{ String model;//모델명 String number;//폰번호 int chord;//벨소리 //생성자 생성 public Cellphone(String model, String number, int chord) { this.model = model; this.number = number; this.chord = chord; } void setNumber(String number) {//번호 재저장 this.number = number; } String getMode..
//계좌정보 - 계좌번호, 이름, 잔액 //기능-입금, 출금(잔액이 모자랄경우 경고) //카드번호 추가 class. pay 시 카드번호 or 잔액 모자랄 경우 경고 package Inheritance; class Account{ String accountNo;//계좌번호 String name;//이름 int balance;//잔액 void deposit(int a) {//입금 this.balance += a; } int withdraw(int b) {//출금 if (this.balance < b) { return 0; } else { this.balance -= b; return this.balance; //return this.balance - b;//한줄로도 가능 } } @Override public..
//평균 클래스를 상속을 받아서 평균과 총점을 구하는 하위 클래스를 생성 package Inheritance; class Avg{ double avg; Avg(){}//없으면 오류 Avg(double avg){ this.avg = avg; } void average(int sum) { avg = (double)sum / 2; //avg = sum / 2.0;실수로 변환하기 위한. System.out.println("평균 : " + avg); } } class Total extends Avg{ int total; int math; int eng; Total(int math, int eng) { this.math = math; this.eng = eng; this.total = this.math + this..
// 상속 : 재산을 물려받는 행위 // 기존 클래스에 기능을 추가하거나, 재정의 : 새로운 클래스를 정의하는 것. // 객체(인스턴스)들은 Object 클래스를 자동적으로 상속 받는다. // 기본클래스 -> 파생클래스 // 부모클래스 -> 자식클래스 // 상위클래스 -> 하위클래스 // 자식클래스의 멤버갯수는 부모클래스보다 같거나 많을 수 있다. // 상속의 범위 : 멤버변수, 메서드 //생성자 제외! // 명령어 클래스명 extends 기본클래스명 // 자바는 다중 상속이 안된다 -> 해결 interface package Inheritance; class Person{ int age; String name; void eat(String a) { System.out.println(a + "를 먹었습니다..
//인터넷가입정보 클래스명 //필수-이름,아이디,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 = i..
// 좌표저장하는 클래스 // 생성자를 이용한 인스턴스 복사 // 입력값으로 클래스참조변수 class D{ int xpos, ypos; // 기본생성자 X D(int x, int y){ this.xpos = x; this.ypos = y; } D(D d1){ this.xpos = d1.xpos; this.ypos = d1.ypos; } @Override public String toString() { return "D [xpos=" + xpos + ", ypos=" + ypos + "]"; } } public class ConstructorEx2 { public static void main(String[] args) { D a1 = new D(100, 100); System.out.println(a1)..
// 회원가입 Join // * 꼭 기입 이름,전화번호,주소 // 생년월일, 직장주소, 직장전화번호 class Join{ String name; String phone; String address; String birth; String work_address; String work_phone; //우클릭 > source > Generate Constructor Using Fields public Join(String name, String phone, String address, String birth, String work_address, String work_phone) { this.name = name; this.phone = phone; this.address = address; this.birt..
// 영화의 등급은 대본 script, 연기 action, 감독 directing 점수로 결정된다. // 각 분야 10점 만점. package HomeWork; public class MovieRating { public static String Movie(int a, int b, int c){ int script = a; int action = b; int directing = c; String movieRating; int total = script + action + directing; if (total >= 0 && total = 10 && total < 21) { movieRating = "B등급"; } else..
//상품 A10001, 기초재고량 500 // 재고 증가, 감소값 각각 입력받아서 //기능 - 재고증가, 재고감소 package HomeWork; import java.util.Scanner; class GoodsStock{ String goodsCode; int stockNum; void addStock(int a) { //재고 더하기 stockNum = stockNum + a; System.out.println(goodsCode + "의 재고수량은 "+ stockNum +"개 입니다."); } int subStock(int b) { stockNum = stockNum - b; System.out.println(goodsCode + "의 재고수량은 "+ stockNum +"개 입니다."); return..
//계좌번호, 잔액 - 클래스 생성 // 기능 - 입금, 출금, 잔액조회 package Class; class Account{ String acc_Number; int money; //기능 - 입금 void deposit(int a) { money = money + a; System.out.println("입금액 : "+ a); } int search(String a) { return money; } //기능 - 출금 후 잔액조회 void withdraw(int a) { money = money - a; System.out.println("출금액 : "+ a); } } public class ClassEx_1 { public static void main(String[] args) { //계좌 생성 Ac..