도메인 IP 얻기 - nslookup 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 // http://blog.naver.com/bbaggu17/20102760366 #include #include #include void err_display(char *msg) { LPVOID lpMsgBuf; FormatMessage( FORMAT_MESSAGE_ALLOCATE_BUFFER|FORMAT_MESSAGE_FROM_SYSTEM,NULL,WSAGetLastError(), MAKELANGID(LANG_NEUTRA..
가상함수 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 #include "pch.h" #include class Base { public: void Display() { printf("Base의 Display()\n"); } }; class Derived : public Base { public: void Display() { printf("Derived의 Display()\n"); } }; int main() { Base* pObj = new Derived; pObj->Display(); delete pObj; _getwch(); } Colored by Color Scripter cs 실행결과> main() 에서 p..
find_if() 사용하기 위해 #include 필요하다. #include #include struct _struct뉴스 { CString str종목코드; CString str검색어; }; std::vector::iterator result2 = std::find_if(m_vstr뉴스종목.begin(), m_vstr뉴스종목.end(), [str종목코드, str검색어](_struct뉴스 뉴스) // 인수 struct뉴스는 fnd_if 루프 실행하는 동안 요소 값 { return 뉴스.str검색어 == str검색어 && 뉴스.str종목코드 == str종목코드; } ); if (result2 == m_vstr뉴스종목.end()) { _struct뉴스 struct뉴스; struct뉴스.str검색어 = str검색..