본문 바로가기
반응형

C++13

Delphi vs. Python Delphi vs. Python http://vschart.com/compare/delphi-programming-language/vs/python-programming-language Delphi Python Delphi (Pascal based programming language) Python Category Programming Language Programming Language Preference 49% votesvotes 51% votesvotes✏ Website www.​embarcadero.​com/​products/​delphi www.​python.​org License Commercial, Community Edition - Free Python Software Foundation .. 2020. 3. 10.
파이썬 vs 자바 vs C++ vs 자바스크립트 파이썬 vs 자바 vs C++ vs 자바스크립트 C/C++ 계열의 언어가 여전히 강세다. 그리고 무엇보다 점점 더 거세지는 파이썬(Python)의 인기다. 어딜가나 파이썬(Python)의 인기가 대단하다. 전세계(World)에서의 4가지 개발언어의 인기를 살펴보자. 한국(South Korea)에서의 4가지 개발언어의 인기를 살펴보자. 미국(USA)에서의 4가지 개발언어의 인기를 살펴보자. 2020. 1. 28.
2019년 4월 개발언어 순위? 2019년 4월 인터넷에서 가장 인기 있는 프로그래밍 언어 순위는? Top programming language ? 인터넷에서 인기있는 tag나 검색어를 바탕으로 한 것이라서 100% 신뢰라기 보다는 참고용. Assembly language, Object-C, MATLAB의 약진이 돋보인다. Groovy 가 가장 많은 상승을... reference : TIOBE index 2019. 5. 1.
2018년 1월, 12월 프로그래밍 언어 인기도 순위 2018년 1월, 12월 프로그래밍 언어 인기도 순위 네덜란드 티오베(TIOBE) 회사가 매달 검색엔진 통계를 이용하여 발표하는 개발언어 인기도 순위 2018년12월 2018년 1월 1년 전 / 1개월 전 정보이지만 대략 트렌드 파악이 간다.2019년 1월은 어떨지 조만간 확인하도록 하고C#은 6위, DELPHI는 11위 정도를 유지하고 있구나. https://www.tiobe.com/tiobe-index/ 2019. 1. 3.
[개발/MFC] VARIANT, BSTR, SAFEARRAY C++ Tutorial 출처 : http://msdn.microsoft.com/en-us/library/e305240e-9e11-4006-98cc-26f4932d2118(VS.85) VARIANT, BSTR & SAFEARRAY C++ Tutorial...IntroductionFrustrated by the lack of good articles on the VARIANT data type, I decided to write this short introduction. The VARIANT type is an all purpose data type used by IDispatch::Invoke both to transmit and receive parameters. It can hold numbers, strings, arra.. 2012. 2. 7.
[개발/API] 웹에 있는 파일크기 알아오기 [개발/API] 웹에 있는 파일크기 알아오기 DWORD GetHttpFileSize(LPCTSTR lpszUrl) { HINTERNET hInternet,hURL; TCHAR buffer[32]; DWORD dwSize=32,dwFileSize; // 인터넷 연결 hInternet=InternetOpen(TEXT(""), INTERNET_OPEN_TYPE_PRECONFIG, 0, 0, 0); if (hInternet == NULL) return -1; // 인터넷 연결이 되지 않았으면 에러 리턴 // URL 오픈 hURL=InternetOpenUrl(hInternet, lpszUrl, NULL, 0, INTERNET_FLAG_TRANSFER_BINARY, 0); // 오픈에 실패했을 경우 에러 리턴 if.. 2012. 1. 27.
[개발/C++] 작업표시줄 정보 및 작업영역 구하기 SHAppBarMessage 작업표시줄 정보 및 작업영역 구하기 SHAppBarMessage 함수 http://msdn.microsoft.com/en-us/library/bb762108(VS-85).aspx How to find the edge of a task bar http://support.microsoft.com/kb/179908/en-us MinitorFromRect 함수 http://msdn.microsoft..com/en-us/library/dd145063(VS.85).aspx GetMonitorInfo 함수 http://msdn.microsoft..com/en-us/library/dd144901(VS.85).aspx 1. 먼저 작업표시줄의 위치와 영역을 알아야. SHAppBarMessage.. 2012. 1. 13.
[개발/MFC] error LNK2005: --- .obj에 이미 정의되어 있습니다. 오류 CRT(C 런타임) 라이브러리와 MFC(Microsoft Foundation Class) 라이브러리가 잘못된 순서로 링크되면 다음과 비슷한 LNK2005 오류가 발생할 수 있습니다. nafxcwd.lib(afxmem.obj) : 오류 LNK2005: "void * __cdecl operator new(unsigned int)"(??2@YAPAXI@Z)이(가) LIBCMTD.lib(new.obj)에 이미 정의되어 있습니다. nafxcwd.lib(afxmem.obj) : 오류 LNK2005: "void __cdecl operator delete(void *)"(??3@YAXPAX@Z)이(가) LIBCMTD.lib(dbgnew.obj)에 이미 정의되어 있습니다. nafxcwd.lib(afxmem.obj) : .. 2012. 1. 5.
[개발/C++] 형 변환 char* to string or string to char* 형 변환 char* to string string temp_file; char szPath[256] = "C:\\Projects"; temp_file = string(szPath); temp_file += string ("\\file.tmp"); string to char* string temp_file = "\\file.tmp"; char szPath[256] = "C:\\Projects"; strcat(szPath, temp_file.c_str()); 2012. 1. 3.
반응형