[MFC] Memory Mapped File
MFC Memory Mapped File 적용 코드 HANDLE hMapfile = CreateFileMapping( INVALID_HANDLE_VALUE, NULL, PAGE_READWRITE, 0, 128, _T("Local\\Test") ); LPCTSTR pMemoryMap ; pMemoryMap = (LPTSTR)MapViewOfFile( hMapfile, FILE_MAP_ALL_ACCESS, 0, 0, 16); if (!pMemoryMap) { CloseHandle(hMapfile); printf("nothing!\n"); return S_FALSE; } TCHAR szMsg[] = _T("Working!"); CopyMemory((PVOID)pMemoryMap, szMsg, (_tcslen(..
2022. 4. 12.
[파이썬]class 정리 (상속, 다중상속)+pass, super 사용법
○ 상속 물려주는 클래스 부모클래스가 자식클래스에게 변수와 메소드를 물려준다. class 자식클래스(부모클래스) 형태로 사용된다. class human: def __init__(self, name, age): self.name = name self.age = age def Home(self, location): print("{0} 의 집은 {1}입니다. ".format(self.name, location)) class student(human): #human 클래스를 상속받아 student 클래스는 자식클래스가 된다 def __init__(self, name, age, grade): human.__init__(self, name, age) self.grade = grade print("{0}이고 나이는 ..
2021. 2. 5.