일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- html plug-in
- #1차원배열
- html video
- html code
- html multimedia
- #2차원배열
- #bubbleSort
- mac terminal command
- #성적관리프로그램
- 토큰경제
- hyperledger transaction
- #android activity
- #JAVASCRIPT
- #C++ has~a
- #자바상속#자바이즈어#is~a
- html5 new tag
- html youtube
- html object
- git flow
- #CallByAddress
- 하이퍼레저패브릭
- border-box
- docker example
- #다차원포인터
- #binary
- relative path
- #3차원배열
- html charset
- #C++ 연산자함수오버로딩
- html id
- Today
- Total
목록Java (52)
A sentimental robot
필드( field ) 클래스 안에 존재하는 데이터, 객체를 사용할때 지속적으로 사용되어지는 변수 main함수 내에 있는 변수는 필드가 아니라 지역변수이다. 접근지정자를 캡슐화 하기 위해 private를 주로 사용한다. 메소드( method ) 외부에서 내부의 필드를 사용할 수 있게 해주는 기능 ( 연결 시켜주는 기능 ) 1) instance method : object를 생성해야만 생성되는 메소드 2) static method : 객체와 무관하게 미리 만들어지는 메소드, 클래스를 통틀어서 오직 한 개다. 접근지정자로 public를 주로 사용한 다.ex) public static void main 생성자( constructor ) 1) new 연산자에 의해 객체 생성 시 자동호출 되어지는 함수 (즉, 생성..
import java.util.Scanner;public class Hello2 { public static void main(String[] args) { Scanner sc=new Scanner(System.in); System.out.print("반의 수 :"); int clas; clas=sc.nextInt(); System.out.print("학생 수:"); int student; student=sc.nextInt(); int [][][]score=new int[clas][student][4]; float [][]avg=new float[clas][student]; String [][]name=new String[clas][student]; String []sconame={"Class","Nam..
import java.util.Scanner;public class Hello2 { public static void main(String[] args) { Scanner sc=new Scanner(System.in); System.out.print("Input the number of students:"); int student; student=sc.nextInt(); int [][]score=new int[student][4]; float []avg=new float[student]; String []name=new String[student]; String []sconame={"Name","kor","eng","mat","total","avg"}; for(int i=0; i
import java.util.Scanner; public class Hello { public static void main(String[] args) { Scanner sc=new Scanner(System.in); String str=new String(); // 문자열 클래스는 레퍼런스타입이므로 동적할당으로(힙 영역에) 객체 생성해준다. str=sc.next(); System.out.println(str); } } public class Hello { public static void main(String[] args) { String str=new String("superman"); // 문자열객체 생성과 동시에 초기화 , 처음부터 값 넣기 System.out.println(str); } }..
public class Hello2 { public static void main(String []ar){ int []arr=new int[3]; for(int i=0; i
public class Hello2 { public static void main(String[] ar) { int[][] arr; // int 이차원 배열을 접근하겠다!!고 하는 배열 참조변수 선언 (메소드영역) arr = new int[2][3]; // new연산자로 arr이 가르키는 배열 생성 (힙영역) for (int i = 0; i< 2; i++) { for (int j = 0; j< 3; j++) { arr[i][j] = i + j; } for (int i = 0; i < 2; i++) { for (int j = 0; j < 3; j++) { System.out.println(arr[i][j]); //012 123출력 } } } } public class Hello2 { public stati..
배열이란? 같은 타입을 메모리 상에서 순차적으로 배열하는 것 일괄처리, 반복처리가 장점이다. 배열은 reference 타입이기 때문에 동적메모리 할당( new )을 해야한다. 그러나, C와 달리 동적메모리 해제를 하지 않아도 된다. cf) 자바에는 Garbage Collecter(GC)가 있기 때문에 exercise public class Hello { public static void main(String []args){ int []arr; // int 일차원 배열을 접근하는 reference 변수 'arr' 선언 (->method area) //reference 변수(arr)가 접근할 대상(->heap area)이 필요하다! arr=new int[3]; //동적메모리 할당은 1 : 1로 해줘야 한다...
1. primitive type 2. reference type ( 참조 타입 ) - c언어에서의 pointer역할, but 주소 필요x, 동적메모리(new)로 할당 받아야함. - 배열( array ) - 객체( object ) - 클래스( class ) - 인터페이스( interface ) Access Modifier : 외부에서 내부로 접근할수 있는 권한 1.private : 외부에서 내부로 절대로 접근 불가능 2.default : 같은 패키지내에서만 접근 가능 3.protected : 외부 패키지 중 자식 클래스만 접근 가능 4.public : 외부에서 내부로 맘대로 접근할 수 있는 권한 - 클래스 이름의 첫글자는 항상 대문자로 표기한다. - 클래스 밖에서는 패키지선언, 임포트 선언만 가능 pack..