Language/C++4 [ C++ ] 8bits string을 unsigned char로 file에 압축하여 저장하기 8bits string을 unsigned char로 file에 압축하여 저장하기 목표 string 형태인 8bits binary 를 file에 1byte 크기로 넣기 즉, string을 unsigned char로 변환하는 작업을 수행할 것이다. 문제점 이진수를 binary 파일을 열어 입력해보았다. 결과는 string 형태인 8bits 이진수를 file에 쓰면 8개의 char가 쓰이게 된다. 이는 8byte 크기로 저장되는 것이다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 #include #include using namespace std; void encoder(const string& txt) { ofstream fout; fout.open("encodingTe.. 2020. 11. 15. [ C++ ] OOP - (1) 보호되어 있는 글 입니다. 2020. 8. 5. [ C++ ] Reference (참조) 보호되어 있는 글 입니다. 2020. 3. 3. [ C++ ] Manipulator (조정자) 보호되어 있는 글 입니다. 2020. 2. 18. 이전 1 다음