8장. 경계
개요
외부 코드 사용하기

Untitled 
Untitled Map sensors = new HashMap(); Sensor s = (Sensor)sensors.get(sensorId); Map<String, Sensor> sensors = new HashMap<Sensor>(); Sensor s = sensors.get(sensorId); public class Sensors { private Map sensors = new HashMap(); public Sensor getById(String id) { return (Sensor) sensors.get(id); } }
경계 살피고 익히기
log4j 익히기
학습 테스트는 공짜 이상이다
아직 존재하지 않는 코드를 사용하기
깨끗한 경계
Last updated

