분류 전체보기
-
자바Platform/소켓 2013. 7. 5. 18:08
java.net.Socket.close().getInetAddress().getOutputStream().getInputStream() java.net.DatagramSocket java.net.ServerSocket.accept() java.net.URLimport java.net.*; import java.io.*;.. Socket s = new Socket(hostname, port);InputStream sin = s.getInputStream()BufferedReader fromServer = new BufferedReader(new InputStreamReader(sin));OutputStream sout = s.getOutputStream();PrintWriter toServer = new ..
-
Objective-C프로그래밍 언어/규격 2013. 7. 4. 03:35
참조 사이트:http://www.otierney.net/objective-c.html.kohttp://www.gnustep.org/resources/ObjCFun.htmlhttp://www.gnustep.org/resources/documentation/Developer/Base/ProgrammingManual/manual.htmlhttp://www.gnustep.org/resources/documentation/Developer/Base/ProgrammingManual/manual_toc.html
-
wxWidgetsGUI/GDI 2013. 7. 4. 03:15
wxColour wxBrush wxBitmap wxDC wxMemoryDC -> wxDC.SelectObject().SetBrush().DrawRectangle().DrawCircle() wxPaintDC -> wxDC.SetBrush().DrawCircle().Blit() wxWindow.OnPaint // virtual? .Refresh().RefreshRect().Update().GetClientSize() wxFrame#include "wx/wx.h" class MyFrame : public wxFrame{public:MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size, long style = wxDEFAULT_FRAME_S..
-
LinuxSysAdmin/기타 2013. 7. 4. 00:19
centos-release-5-112.6.18- GRUB(GRand Unified Bootloader)/boot/grub/grub.confor /etc/grub.conf -> 리눅스 배포판의 이름과 버전$ rpm -qa *-releaseor cat /etc/*-release | uniqor cat /etc/issue> 커널 버전$ uname -ror cat /proc/versionor last reboot | head -1or rpm -qa kernelor yum info installed kernel | egrep "^Version|^Release"or yum list installed | grep ^kernel># shutdown -h nowor haltor init 0 $ pm-hibernate #..
-
wxWidgetsGUI/사양 2013. 7. 2. 18:50
wxAppOnInit() // virtual?FALSE를 반환하면 응용 프로그램이 종료된다 .SetTopWindow()응용 프로그램의 메인 윈도우를 지정부모 윈도우 없이 생성된 대화상자의 부모로 최상위 윈도우를 사용#include "wx/wx.h" class MyFrame : public wxFrame{public:MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size);}; MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size) : wxFrame((wxFrame *)NULL, -1, title, pos, size){wxBoxSizer *topsiz..