Engineering71 Generic Count Algorithm #include #include #include #include using namespace std; int main() { cout 2008. 2. 12. Iterator Type 2008. 2. 12. 신기한 stl의 세계 #include #include #include using namespace std; int main() { list list1; list1.push_back(10); list1.push_back(3); list1.push_back(2); list1.push_back(1); ostream_iterator out(cout, " "); copy(list1.begin(), list1.end(), out); cout 2008. 2. 11. Thread 종료시키기. 이렇게 해도 되는 것인지 모르겠다. -_-public class RecvThread implements Runnable { public void run() { try { byte[] reqCode = new byte[1]; while (!Thread.currentThread().isInterrupted()) { is.read(reqCode); switch (reqCode[0]) { case Protocol.RESPONSE_LOGIN: loginHandler(); break; case Protocol.RESPONSE_SLOGIN: sLoginHandler(); break; case Protocol.RESPONSE_JOIN: joinHandler(); break; case Protocol.RESPONSE_D.. 2008. 2. 4. 이전 1 ··· 10 11 12 13 14 15 16 ··· 18 다음