JAVA device independent WORA : write once runs anywhere other languages: procedure or functionjava: method Java application Programsapplication- class
println 줄바꿈print 다붙여씀printf : format str + output str%f - float %d - integer %s - string %eM.Nf => M자리차지 N소수점아래string은 생략 안함 e 디폴트: 1.123456e+0n 소
switch(Controlling_expression){ case
Nested Loops
all objects of a class have the same methods and variables but different objects can hold different values in the same variable2 types of methodsretur
Static References useingMisusingReferences PackagesJavadoc
local variableclass variable instance variable
Multidimensional Array
method의 이름은 같고, 매개변수의 갯수/타입이 다른 함수를 정의하는 것리턴값만 다른 오버로딩은 불가능상위 클래스의 method를 하위 클래스에서 재정의하는것method의 이름, parameter의 갯수, 타입 동일. 주로 상위클래스의 상속받은 동작을 하위클래스에서
early binding - Method definition과 method invocation의 연결이 compile time에 일어남 late binding - Method definition과 method invocation의 연결이 그 method가 call 된
Interface는 자신을 구현하는 class들이 반드시 가져야 할 methods들의 heading들을 지정하고 있다. 어떤 인터페이스를 구현하는(implements) 클래스는 반드시 자신이 구현하는 인터페이스에 선언된 모든 메소드를 구현해야 한다. 그렇지 않으면 오류