Replies: 1 comment
-
vector<int> value1{ 0, 1, 2, 3, 4, 5 };
string value2 = "test";
ofstream some_output{ "output.bin", ios_base::binary };
serializer::writeMany(some_output, value1, value2); // some_output에 value1, value2가 저장됨
ifstream some_input{ "output.bin", ios_base::binary };
vector<int> value1;
string value2;
serializer::readMany(some_input, value1, value2);
// some_input으로부터 value1 = [0, 1, 2, 3, 4, 5], value2 = "test"를 읽어옴.
즉
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
안녕하세요.
src/KiwiBuilder.cpp
코드를 보던 중에 아래 부분의 역할이 궁금하여 질문드립니다.Kiwi/src/KiwiBuilder.cpp
Lines 297 to 305 in fa1023d
serializer::readMany
와serializer::toKey("KIWI")
그리고formMap
이 어떤 것을 의미하는지 알 수 있을까요?Key
와 관련해서는 아래 구조체도 존재하던데Key
가 어떤 기능을 하는지도 궁금합니다.Kiwi/src/serializer.hpp
Lines 92 to 113 in fa60f45
감사합니다. 🙏
Beta Was this translation helpful? Give feedback.
All reactions