일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- asp함수
- array
- 자바기초
- xmldom
- 이미지가로길이
- sql순위
- jdbc driver
- ERD
- injection
- 한글입력체크
- FileSystemObject
- MSSQL보안
- 정규식
- sql랭킹
- instr
- inner join
- VARIABLE
- update
- 인젝션
- tempDB
- WML
- sql업데이트
- 이미지세로길이
- XML
- SPLIT
- JavaScript
- join
- wap
- javascript 한글입력체크
- VarType
- Today
- Total
목록자바_기초 (77)
3초기억력
//String model_Name;//모델명 //int price;//가격 //String color;//색상 // //기능 - 결제(공란) package Class; public class SmartPhone { String model_name; int price; String color; void pay() {} @Override public String toString() { return "SmartPhone [model_name=" + model_name + ", price=" + price + ", color=" + color + "]"; } public static void main(String[] args) { SmartPhone iOS = new SmartPhone(); iOS.model..
// 클래스 - 객체를 정의해 놓은것! //클래스의 용도 - 객체를 생성하는 데 사용 // 객체 - 실제로 존재하는 것! 사물 또는 개념 // 객체의 용도 - 객체의 속성과 기능따라 다름 // 객체 --> 하드웨어적인 소프트웨어화 시킨다. // 클래스 -> 파생자료형 // ex) 주민등록증(이름, 주소, 생년월일, 키 4개 조합) 틀로 묶음 == class. 이 클래스로 뭔가를 만든다? 객체 // ex) 학생정보(이름, 학과, 학번)을 class 자료형으로 만들고, 어딘가에 사용한다? 객체 // ex) 리니지(기사 class, 요정 class, 궁수 class) --> 캐릭터 생성? 객체 // 사용자 정의 자료형 - 프로그래머가 원하는 자료형의 묶음(집합) // 기본 제공 자료형 : Scanner, Ra..
//오버로딩 //- 같은 이름의 메서드를 여러개 정의하는 것! //ex) println(); /* 오버로딩 조건 메서드 이름 동일 매개변수 개수 또는 타입이 달라도 된다. 리턴값(반환) 상관없음! */ //메서드명 add. 각 자료타입별 OverLoading 을 해보자 public class OverloadingEx { public static void add(int a, int b) { System.out.println("합 : "+ (a+b)); } public static void add(double a, double b) { System.out.println("합 : "+ (a+b)); } public static void add(String a, String b) { System.out.prin..
//메서드 범위 //지역변수 : 메서드 내에서 선언된 변수. 메모리 공간에 변수가 쌓이지 않는다. //{ 시작하면 생성하고 //} 닫히면 삭제되는 변수 public class MethodEx3 { //매개변수(parameter) 선언 //메서드 기능을 수행할 때 받을 값을 저장하는 변수 //- 개수 제한없음, 반드시 필요없음 //ex) println();//개행처리(줄바꿈처리만 되고 넘어감) public static void show(int a) { int i = 0;//지역변수, 매개변수 i++; System.out.println("출력:"+i); System.out.println(a); } public static void main(String[] args) { // TODO Auto-generate..
/* 세 수를 비교하는 메서드를 정의 메서드명 : funt1 입력값 : 정수 3개! 반환값 : 제일큰 정수를 돌려준다. 그 정수의 타입을 결정하면 된다. */ public class MethodEx2 { public static int funt1(int a, int b, int c) { if( a > b && a > c) { return a; } else if(b > a && b > c) { return b; } else { return c; } } public static void main(String[] args) { // TODO Auto-generated method stub int f1 = funt1(10, 20, 30); System.out.println("가장 큰수 : "+ f1); Syst..
// 메서드를 이용해서 3개 정수의 합을 구하시오 public class MethodEx { public static void add(int a, int b, int c) { System.out.println("a+b+c의 합 : " + (a+b+c)); } public static void main(String[] args) { // TODO Auto-generated method stub add(10, 20, 30); } }
// 2차원배열 // 제기차기. 1,2,3학년 각 3명씩, 총합갯수, 평균구하기 public class Array2_3 { public static void main(String[] args) { double[][] score = new double[3][3]; double total = 0; double avg = 0.0; double cnt = 0; score[0][0] = 11; score[0][1] = 20; score[0][2] = 30; score[1][0] = 100; score[1][1] = 200; score[1][2] = 300; score[2][0] = 12; score[2][1] = 21; score[2][2] = 3; System.out.println(score.length);//..
//// 선언과 동시에 배열을 초기화하는 방법 //// 길이가 없는 배열 선언. 길이만큼 컴파일시 [] 안에 숫자가 들어간다. //String str[] = new String[] { //"I", "am", "hungry", "happy"//0, 1, 2, 3 //, "sing", "drive", "You", "are"//4, 5, 6, 7총 8개 //}; // I am happy 출력 // You are hungry 출력 public class Array2_2 { public static void main(String[] args) { String str[] = new String[] { "I", "am", "hungry", "happy" ,"sing", "drive", "You", "are" }; /..
//// 5명의 이름을 저장하는 배열 선언! import java.util.Scanner; public class Array2_1 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String[] name = new String[5]; for(int i=0;i
//// 3명의 키를 입력하는 배열 선언 import java.util.Scanner; public class Array2_0 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); double[] height = new double[3]; for(int i = 0; i < 3; i++) { System.out.println((i+1)+"번째 사람의 키는? "); height[i] = sc.nextDouble(); } System.out.println("========결과========"); for(int i=0; i