본문 바로가기
728x90
반응형

전체 글66

라이젠 Ryzen 7세대 저전력 CPU 정리 라이젠 제품군 중 22년 9월 이후 출시된 제품 중 저전력 CPU를 정리한 글입니다. 굳이 저전력을 택한 이유는 높은 사양의 CPU는 많은 전력 소모를 동반하고 발열 또한 증가하여 노트북 내의 쿨링팬 돌아가는 소리가 거슬려서 입니다. ZEN2 탑재 노트북 : https://prod.danawa.com/list/?cate=11236452&searchOption=searchAttributeValue=818380,818383/innerSearchKeyword= 가격 : 40만원부터 시작 ZEN3 탑재 노트북 : https://prod.danawa.com/list/?cate=11236452&searchOption=searchAttributeValue=823591,823594,823597/innerSearchKe.. 2024. 2. 17.
release 배포 시 dll 오류 날 때 visual studio의 컴파일 시 기본 값은 동적 라이브러리 방식으로, visual stuio가 깔리지 않은 컴퓨터에서 exe를 작동 시 dll을 찾을 수 없다는 오류를 뱉는다. 컴파일 옵션을 정적 라이브러리 방식으로 변경해 줘야 한다. 구성 : release 런타임 라이브러리 : 다중 스레드 /Md를 다중 스레드 /MT로 변경 2023. 11. 21.
std::to_wstring(int), _tow_s(int, wchar_t, 2 or 10); wchar_t buffer[256] = {}; GetWindowText(g_tow_in, buffer, sizeof(buffer)); ::TextOut(hdc, 100, 100, buffer, lstrlen(buffer)); int i_Value = _wtoi(buffer); std::wstring temp_str = std::to_wstring(i_Value); ::TextOut(hdc, 200, 100, temp_str.c_str(), temp_str.size()); wchar_t buffer[256] = {}; GetWindowText(g_tow_in, buffer, sizeof(buffer)); ::TextOut(hdc, 100, 100, buffer, lstrlen(buffer)); int i_.. 2023. 11. 16.
class static, function static class UserManager { public: static UserManager um; static UserManager* GetInstance() { static UserManager um; std::cout 2023. 10. 5.
728x90
반응형