블로그 이미지
Leeway is... the freedom that someone has to take the action they want to or to change their plans.
maetel

Notice

Recent Post

Recent Comment

Recent Trackback

Archive

calendar

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
  • total
  • today
  • yesterday

Category

2006. 7. 13. 19:57 Computation/Language
Head First Java: 뇌 회로를 자극하는 자바 학습법(개정판)

http://wickedlysmart.com/


http://www.javaranch.com/



 codeKitchensTiger



 J2SE(TM) Development Kit Documentation 5.0 docs


UML = Unified Modeling Language
http://en.wikipedia.org/wiki/Unified_Modeling_Language


PATH 환경 변수에 메인 자바 디렉토리 밑에 있는 /bin 디렉토리(자바 바이너리 파일이 들어 있음)를 추가해야 한다.
bin 디렉토리를 PATH 변수에 추가하면 된다.
그러면 명령행에서 "% javac" 명령을 입력했을 때 터미널에서 javac라는 자바 컴파일러를 바로 실행시킬 수 있다.

44p
main method 메소드
: 컴퓨터로 하여금 어떤 일을 하게 만드는 모든 일반적인 지시사항을 담고 있다


코드 -  선언문/순환문/분기문

45p
표준 순환 구조 - while, do-while, for

순환문 while
> 조건 테스트
> 부울 값 boolean ; 조건 테스트의 결과 ; true 또는 false
> 비교 연산자(<, >, ==)를 이용하여 변수의 값을 확인함으로써 간단한 부울 테스트 가능
   cf. == ; 동치 연산자 / = ; 대입 연산자
* 조건 테스트를 직접 할 수 있는 변수는 부울 변수 뿐.
* 부울 테스트는 괄호 안에 들어간다.
   eg. while (x==4) { }

 조건에 따른 분기문 if




'Computation > Language' 카테고리의 다른 글

The Java™ Tutorials  (0) 2007.02.28
The Java Technology  (0) 2007.02.28
Java  (0) 2006.05.17
object-oriented programming  (0) 2006.05.01
프로그래밍 언어 개론  (0) 2006.03.31
posted by maetel