취미 기록용 블로그
쓰레드 남발했더니 동기화 문제 생겼음 해당 변수 임계영역 설정은 변수 사용할 때마다 아래와 같이 해주면 됨 synchronized(this){ mTemp2 = 뭔가 변수 작업 mHumi2 = 뭔가 변수 작업 } “read more”
private class ThreadTakePictures extends Thread { final static int STATE_DONE = 0; final static int STATE_RUNNING = 1; int mState; public ThreadTakePictures(){} //——————————————————————————— final Handler handler = new Handler(){ public void handleMessage(Message msg){ switch(msg.what){ //이곳에서 GUI 관련 작업을 할수 있다.… “read more”