package prj190703; class Dog1{ Dog1(){ System.out.println("기본생성자 호출 됨");} Dog1(int a ) { System.out.println("오버로딩 된 생성자");} } public class Classex_01 { public static void main(String[] args) { Dog1 d = new Dog1(); // Dog1() 생성자 함수. 클래스 이름과 동일. 자동으로 만들어 준다. 기본형. 기본형이 없이는 인자가 있는 클래스는 만들 수 없음. Dog1 e = new Dog1(9); } } 근데 왜 되냐; 클래스의 멤버 => 데이터(필드/상태) / 함수(메서드/동작 ) 생성자는 new를 이용하여 객체생성(인스턴스화)할때 new 오른..
package prj190703; import java.util.*; class Dog1{ private double Leg; // private 설정하고 마우스 오른쪽 클릭->Source ->Generate getter, setter있음;; private int Head; ////setter///////setter (save, write) //규칙 public void setLeg(double leg) { Leg = leg; } public void setHead(int head) { Head = head; } ////getter//// getter+데이터변수첫글자 대문자 spring 할때는 자동변환 해준다. set대문자 , get대문자//getter (read) public double getLeg(..
package prj190702; import java.util.*; public class array_1 { public static void main(String[] args) { char a = '1'; //int math = 90; //int eng = 96; //int kor = 94; //int sci = 99; int[] sub = {90,80,70,90,90}; int sum = 0; float avg = 0.0f; char grade = ' '; System.out.print("메뉴입력>>"); Scanner scan = new Scanner(System.in); a = scan.next().charAt(0); switch(a) { case '1' : //grade = calculateG..
package prj190702; class Car{ String color; String gearType; int door; Car(){ } //기본 생성자 Car(String color, String gearType, int door){ //파라미터가 있는 생성자. this.color = color; //보통은 이렇게 쓴다. 매개변수 이름은 동일하게, this. 으로 객체의 주소를 지정한다. this.gearType = gearType; this.door = door; } } public class Classtest_2 { public static void main(String[] args) { Car c1 = new Car(); c1.color = "white"; c1.gearType = "auto..
package prj190701; import java.util.*; public class prj0701_1 { public static void main(String[] args) { String[] name = new String[10]; char[] grade = new char[10]; int[] scoreKOR = new int[10]; int[] scoreMAT= new int[10]; int[] scoreENG = new int[10]; int[] scoreSCI = new int[10]; int[] scoreTotal = new int[10]; float[] scoreAVG = new float[10]; char menuChoice; Scanner scan = new Scanner(Sys..
package prj190701; import java.util.*; public class prj0701_1 { public static void main(String[] args) { String name = "AR"; char grade = 'B'; int scoreKOR = 90; int scoreMAT=75; int scoreENG = 80; int scoreSCI = 60; int scoreTotal = 0; float scoreAVG = 0.0f; char menuChoice ; Scanner scan = new Scanner(System.in); do { //메뉴출력 System.out.printf("****성적 관리 프로그램****\n"); System.out.printf("\n"); S..
/////////////두 개의 수를 입력받고 첫번째 수가 짝수 이면 두 수를 더하고 아니면 error System.out.print("첫번째 수를 입력>>"); Scanner scan = new Scanner(System.in); String tmp = scan.nextLine(); int num1 = Integer.parseInt(tmp); System.out.print("두번째 수를 입력>>"); String tmp1 = scan.nextLine(); int num2 = Integer.parseInt(tmp1); if(num1 %2 ==0 ) { int sum = num1+num2; System.out.println(sum); }else if(num1%2 ==1) System.out.println(..
- Total
- Today
- Yesterday
- selectbox
- spring 엑셀
- 이메일 정규식
- mybatis
- Regex
- select제어
- js
- 정규식
- ''찾기
- 엑셀다운로드
- spring error #
- no getter for property named
- 정규식 숫자만
- JSON
- Spring
- IntelliJ #gradle #tomcat #spring #springmvc
- POI EXCEL
- JSON파싱
- 공백찾기
- 정규식 한글만
- SpringXmlModelInspection
- JSON날짜
- jQuery
- 인텔리제이
- poi
- Failed to load resource: the server responded with a status of 404 (Not Found)
- PageNotFound - No mapping for GET
- 계좌번호정규식
- poi 엑셀
- 정규식 특수문자
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |