Notice
Recent Posts
Recent Comments
Link
목록인스턴스 생성 (1)
-
자바를 시작하기 전에 :: 인스턴스의 생성과 사용
1234567891011121314151617class Airconditioner{ String color; boolean power; int temperature; void power() { power = !power; } void tempUp() { temperature++; } void tempDown() { temperature--; }} class ACTest{ public static void main(String args[]){ Airconditioner air; air = new Airconditioner(); air.temperature = 20; }}Colored by Color Scriptercs위의 예제는 Airconditioner클래스로부터 인스턴스를 생성하고 인스턴스의 속성(te..
언어/자바
2016. 11. 29. 00:37