网站首页 站内搜索

搜索结果

查询Tags标签: hexout,共有 2条记录
  • 对于C++的I/O流和各自的缓冲区的理解

    #include <iostream> #include <fstream> using namespace std;int main() {ostream hexout(cout.rdbuf());hexout.setf(ios::hex, ios::basefield);hexout.setf(ios::showbase);hexout << "hexout: " << 177 << " ";/…

    2021/11/19 20:13:09 人评论 次浏览
  • 对于C++的I/O流和各自的缓冲区的理解

    #include <iostream> #include <fstream> using namespace std;int main() {ostream hexout(cout.rdbuf());hexout.setf(ios::hex, ios::basefield);hexout.setf(ios::showbase);hexout << "hexout: " << 177 << " ";/…

    2021/11/19 20:13:09 人评论 次浏览
扫一扫关注最新编程教程