c++2 Input / Output Stream c++은 입력과 출력을 a stream of bytes로 본다. 입력에서는 프로그램은 입력 스트림에서 byte를 추출한다. 출력에서는 프로그램은 출력 스트림에 bytes를 삽입한다. 입력스트림의 byte 보통 키보드를 통해, 또는 저장장치나 다른 프로그램을 통해 입력된다. 출력스트림의 byte는 보통 display 나 printer, 저장장치 또는 다른 프로그램으로 흘러간다. stream은 프로그램과 소스 또는 목적지 사이의 중계자 역할을 한다. 장점 : 프로그램에서는 단지 입력이 어디에서 온 것에 대해서 알 필요 없이 stream에서 byte를 추출하면 된다. 프로그램은 출력도 역시 어디로 출력할지 알 필요 없이 stream에 byte를 출력하면 된다. 2019. 7. 13. the POCO C++ Libraries Release 1.9,0 Release 1.9.0 (2018-03-07)========================== - Added additional text encodings, available in the new PocoEncodings library (GH #2165)- Added Punycode support for resolving Internationalized Domain Names to Poco::Net::DNS (GH #2164)- Added XDG Base Directory Specification support in Poco::Path, Poco::Util::SystemConfiguration and Poco::Util::Application (GH #1609, GH #561, GH #1609)- Adde.. 2018. 3. 20. 이전 1 다음