일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- #C++ 연산자함수오버로딩
- html code
- mac terminal command
- hyperledger transaction
- border-box
- 하이퍼레저패브릭
- docker example
- #android activity
- #1차원배열
- html charset
- html multimedia
- #CallByAddress
- #2차원배열
- html object
- #JAVASCRIPT
- git flow
- html plug-in
- html youtube
- #다차원포인터
- html id
- #C++ has~a
- #bubbleSort
- html video
- relative path
- html5 new tag
- #성적관리프로그램
- 토큰경제
- #3차원배열
- #binary
- #자바상속#자바이즈어#is~a
- Today
- Total
목록Java (52)
A sentimental robot
자바는 객체 지향 언어 ( OOP ) 이다. Object-Oriented Programming C언어는 함수 단위, 자바는 객체 단위이다. 그렇기 때문에, 자바에서는 객체를 어떻게 구체화시킬까? 라는 문제가 가장 중요하다. 1. 추상화 Abstraction 추상화는 불필요한 부분을 생략하고 객체의 속성 중 가장 중요한 것에만 중점을 두어 개략하는 것, 즉 모델화하는 것이다. 2. 캡슐화 Encapsulation 데이터의 보호, 은닉을 위해 데이터를 캡슐안에 넣는 것 C언어( 데이터가 오픈되어 있음 ) 데이터를 안전하게 사용, 변경이 발생할 때 오류의 파급효과가 적다. 3. 상속 Inheritance is~a 관계가 성립되야 상속이 가능하다. 코드의 확장,재활용이라는 장점이 있다. 자바의 모든 클래스는 상..
% gives the remainder of division. The result of 20%3 is 2. It is the most frequently used operator. There is a rule using it. If you divide 20 by 3, the range of th remainder that you get by % is from 0~2. Computer state is 0 or 1, which is called bit state. 28=256 , which 2 means 0 or 1. 8bit = 1byte 32bit = 4byte 64bit = 8byte - The first letter of the variable must be character, cannot start..
step 1. Creating a project File - New - Project step 2. Creating a class in the project Class names usually start with an uppercase letter. * At the upper right side is Open Perspective icon -> you can check Views which are useful in developing projects. * Font edition : Window - Preferences - General - Appearance * When you accidentally close a important menu like Package Explorer, Window - Sho..
1. 내 pc에 자바 깔려 있는지 확인 1) cmd 콘솔창을 킨다. 2) javac -version 입력 2. 자바 개발 도구(JDK) 설치 http://www.oracle.com/technetwork/java/index.html *64비트 pc Menu > JAVA > Java SE > Download Java SE for Developers > Java Download(커피잔 아이콘) > Accept License Agreement > Windows 로 다운로드 *32비트 pc Menu > JAVA> Download Java > 무료 Java 다운로드 *자바 깔렸는지 확인 내컴퓨터 > C 드라이브 > program Files > Java > jdk1.8.0 블라블라 있으면 ok 3. 환경설정 컴퓨터 ..