Standard C++ Episode 7

六、C++的I/O流库
C:fopen/fclose/fread/fwrite/fprintf/fscanf/fseek/ftell...

C++:对基本的I/O操作做了类的封装,其功能没有任何差别,用法和C的I/O流也非常近似。

 

 

七、格式化I/O

<</>>

 1 /*
 2  *格式化I/O练习
 3  */
 4 #include <iostream>
 5 #include <fstream>
 6 using namespace std;
 7 int main (void) {
 8     ofstream ofs ("format.txt");
 9     if (! ofs) {
10         perror ("打开文件失败");
11         return -1;
12     }
13     ofs << 1234 << ' ' << 56.78 << ' ' << "linux"
14         << '\n';
15     ofs.close ();
16     ofs.open ("format.txt", ios::app);
17     if (! ofs) {
18         perror ("打开文件失败");
19         return -1;
20     }
21     ofs << "append_a_line\n";
22     ofs.close ();
23     ifstream ifs ("format.txt");
24     if (! ifs) {
25         perror ("打开文件失败");
26         return -1;
27     }
28     int i;
29     double d;
30     string s1, s2;
31     ifs >> i >> d >> s1 >> s2;
32     cout << i << ' ' << d << ' ' << s1 << ' '
33         << s2 << endl;
34     ifs.close ();
35     return 0;
36 }

 

 

八、非格式化I/O

put/get

 1 /*
 2  *非格式化的I/O练习
 3  */
 4 #include <iostream>
 5 #include <fstream>
 6 using namespace std;
 7 int main (void) {
 8     ofstream ofs ("putget.txt");
 9     if (! ofs) {
10         perror ("打开文件失败");
11         return -1;
12     }
13     for (char c = ' '; c <= '~'; ++c)
14         if (! ofs.put (c)) {
15             perror ("写入文件失败");
16             return -1;
17         }
18     ofs.close ();
19     ifstream ifs ("putget.txt");
20     if (! ifs) {
21         perror ("打开文件失败");
22         return -1;
23     }
24     char c;
25     while ((c = ifs.get ()) != EOF)
26         cout << c;
27     cout << endl;
28     if (! ifs.eof ()) {
29         perror ("读取文件失败");
30         return -1;
31     }
32     ifs.close ();
33     return 0;
34 }

 

 

九、随机I/O
seekp/seekg

tellp/tellg

 1 /*
 2  * seekp/seekg练习
 3  * tellp/tellg练习
 4  * */
 5 #include <iostream>
 6 #include <fstream>
 7 using namespace std;
 8 int main (void) {
 9     fstream fs ("seek.txt", ios::in | ios::out);
10     if (! fs) {
11         perror ("打开文件失败");
12         return -1;
13     }
14     fs << "0123456789";
15     cout << fs.tellp () << endl;//tellp返回当前put操作位置
16     cout << fs.tellg () << endl;//tellg返回当前get操作位置
17     fs.seekp (-3, ios::cur);
18     fs << "XYZ";
19     fs.seekg (4, ios::beg);
20     int i;
21     fs >> i;
22     cout << i << endl;
23     cout << fs.tellg () << endl;
24     cout << fs.tellp () << endl;
25     fs.seekg (-6, ios::end);
26     fs << "ABC";
27     fs.close ();
28     return 0;
29 }

 

 

 

十、二进制I/O

read/write

 1 /*
 2  *read/write练习
 3  */
 4 #include <iostream>
 5 #include <fstream>
 6 #include <cstring>
 7 using namespace std;
 8 class Dog {
 9 public:
10     Dog (const string& name = "", int age = 0) :
11         m_age (age) {
12         strcpy (m_name, name.c_str ());
13     }
14     void print (void) const {
15         cout << m_name << "" << m_age << endl;
16     }
17 private:
18     char m_name[128];
19     int m_age;
20 };
21 int main (void) {
22     ofstream ofs ("dog.dat");
23     Dog dog ("小白", 25);
24     ofs.write ((char*)&dog, sizeof (dog));
25     ofs.close ();
26     ifstream ifs ("dog.dat");
27     Dog dog2;
28     ifs.read ((char*)&dog2, sizeof (dog2));
29     dog2.print ();
30     ifs.close ();
31     return 0;
32 }

 

 

 1 /*
 2  * 使用按位异或对文件加密和解密
 3  * */
 4 #include <iostream>
 5 #include <fstream>
 6 #include <stdexcept>
 7 #include <cstdlib>
 8 using namespace std;
 9 #define BUFSIZE (1024*10)
10 int _xor (const char* src, const char* dst,
11     unsigned char key) {
12     ifstream ifs (src, ios::binary);
13     if (! ifs) {
14         perror ("打开源文件失败");
15         return -1;
16     }
17     ofstream ofs (dst, ios::binary);
18     if (! ofs) {
19         perror ("打开目标文件失败");
20         return -1;
21     }
22     char* buf = NULL;
23     try {
24         buf = new char[BUFSIZE];
25     }
26     catch (bad_alloc& ex) {
27         cout << ex.what () << endl;
28         return -1;
29     }
30     while (ifs.read (buf, BUFSIZE)) {
31         for (size_t i = 0; i < BUFSIZE; ++i)
32             buf[i] ^= key;
33         if (! ofs.write (buf, BUFSIZE)) {
34             perror ("写入文件失败");
35             return -1;
36         }
37     }
38     if (! ifs.eof ()) {
39         perror ("读取文件失败");
40         return -1;
41     }
42     for (size_t i = 0; i < ifs.gcount (); ++i)
43         buf[i] ^= key;
44     if (! ofs.write (buf, ifs.gcount ())) {
45         perror ("写入文件失败");
46         return -1;
47     }
48     delete[] buf;
49     ofs.close ();
50     ifs.close ();
51     return 0;
52 }
53 int enc (const char* plain, const char* cipher) {
54     srand (time (NULL));
55     unsigned char key = rand () % 256;
56     if (_xor (plain, cipher, key) == -1)
57         return -1;
58     cout << "密钥:" << (unsigned int)key << endl;
59     return 0;
60 }
61 int dec (const char* cipher, const char* plain,
62     unsigned char key) {
63     return _xor (cipher, plain, key);
64 }
65 int main (int argc, char* argv[]) {
66     if (argc < 3) {
67         cerr << "用法:" << argv[0]
68             << " <明文文件> <密文文件>" << endl;
69         cerr << "用法:" << argv[0]
70             << " <密文文件> <明文文件> <密钥>"
71             << endl;
72         return -1;
73     }
74     if (argc < 4)
75         return enc (argv[1], argv[2]);
76     else
77         return dec (argv[1], argv[2],
78             atoi (argv[3]));
79     return 0;
80 }

 

 

 

十一、格式控制
in a;
printf ("%d%x\n", a, a)
cout << a << endl;
流函数,例如cout.precision(10)
流控制符,流控制符是对象,例如setprecision(10)。使用流控制符需要include <iomanip>
cout << hex << a;
cout << setw (10) << a;

 1 /*
 2  *格式控制练习
 3  */
 4 #include <iostream>
 5 #include <iomanip>
 6 #include <cmath>
 7 #include <fstream>
 8 #include <sstream>
 9 using namespace std;
10 int main (void) {
11     cout << sqrt (2) << endl;
12     cout.precision (10); // 10位有效数字
13     cout << sqrt (2) << endl;
14     cout << sqrt (2) * 100 << endl;
15     cout << setprecision (5) << sqrt (2) << endl
16         << sqrt (2) * 100 << endl;
17     cout << "当前精度:" << cout.precision ()
18         << endl;
19     cout << setprecision (2) << 1.24 << ' ' << 1.25
20         << ' ' << 1.26 << endl;
21     cout << showbase << hex << 127 << endl;
22     cout << oct << 127 << endl;
23     cout << dec << 127 << endl;
24     cout << noshowbase << hex << 127 << dec << endl;
25     cout << setw (12) << 127 << 721 << endl;
26     cout << setfill ('$') << left << setw (12)
27         << 127 << endl;
28     cout.precision (10);
29     cout.setf (ios::scientific);
30     cout << sqrt (2) << endl;
31     cout.setf (ios::fixed);
32     cout << sqrt (2) << endl;
33     cout << 12.00 << endl;
34     cout << showpoint << 12.00 << endl;
35     cout << noshowpoint << 12.00 << endl;
36     ifstream ifs ("stream.txt");
37     ifs.unsetf (ios::skipws);
38     char c;
39     while (ifs >> c)
40         cout << c;
41     ifs.setf (ios::skipws);
42     ifs.clear (); // 复位
43     ifs.seekg (ios::beg);
44     while (ifs >> c)
45         cout << c;
46     ifs.close ();
47     cout << endl;
48     int i = 1234;
49     double d = 56.78;
50     string s = "tarena";
51     ostringstream oss;
52     oss << i << ' ' << d << ' ' << s;
53     string str = oss.str ();
54     cout << str << endl;
55     str = "hello 3.14 pai";
56     istringstream iss;
57     iss.str (str);
58     iss >> s >> d >> str;
59     cout << s << ' ' << d << ' ' << str << endl;
60     return 0;
61 }

 

转载于:https://www.cnblogs.com/libig/p/4746707.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/375614.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

在Android设备与Mac电脑之间传输文件

不同于Windows和Linux&#xff0c;Android设备连接到Mac电脑上是看不见挂载的目录的&#xff0c;既然看不到了Android设备的挂载目录&#xff0c;如何在Android设备与Mac电脑之间传输文件呢&#xff1f; 原来Android官方提供了传输文件的工具&#xff01;访问www.android.com/f…

mysql语句在node.js中的写法

总结一下mysql语句在node.js中的各种写法&#xff0c;参考了npm网站mysql模块给的实例。 查询 select //1 db.query(select * from tuanshang_users where user_id < 10,function(err,results,fields){//if(err) throw err;console.log( results );if(!!results.length){con…

jqPlot图表插件学习之折线图-散点图-series属性

一、准备工作 首先我们需要到官网下载所需的文件&#xff1a; 官网下载&#xff08;笔者选择的是jquery.jqplot.1.0.8r1250.zip这个版本&#xff09; 然后读者需要根据自己的情况新建一个项目并且按照如下的方式加载对应的js和css&#xff08;因为笔者在VS2012环境下新建的&…

node.js基础:数据存储

无服务器的数据存储 内存存储 var http require(http); var count 0; //服务器访问次数存储在内存中 http.createServer(function(req,res){res.write(hello count);res.end(); }).listen(3000);    基于文件的存储 node.js中主要用fs文件系统模块来管理文件的存储。 文件…

CUDA 6.5 VS2013 Win7:创建CUDA项目

运行环境&#xff1a; Win7VS2013CUDA6.5 1.创建win32空项目 2.右键项目解决方案-->生成项目依赖项-->生成自定义 3.右键项目解决方案-->属性-->配置属性-->常规-->平台工具集 配置属性-->VC目录-->包含目录&#xff0c;添加 $(CUDA_INC_PATH) 连接器-…

c/c++编码规范(2)--作用域

2. 作用域 静止使用class类型的静态或全局变量。 6. 命名约定 6.1. 函数名&#xff0c;变量名&#xff0c;文件名要有描述性&#xff0c;少用缩写。 6.2. 文件命名 6.2.1. 文件名要全部用小写。可使用“_”或"-"&#xff0c;遵从项目规范&#xff0c;没有规范&#x…

subversion svnserver服务启动与配置

svnserve 是一个轻量级的服务&#xff0c; 使用自定义的协议通过TCP/IP与客户端通讯。 客户端通过由 svn:// 或者 svnssh:// 开始的URL访问svnserve服务器。 启动服务器 端口监控&#xff08;inetd&#xff09;模式 如果你打算用端口监控来启动处理客户的访问请求的进程&#x…

mongodb地理空间索引原理阅读摘要

http://www.cnblogs.com/taoweiji/p/3710495.html 具体原理在上面 简单概述&#xff0c;&#xff08;x,y&#xff09;经纬度坐标&#xff0c;通过geohash的方式&#xff0c;通过N次方块四分割生成一个坐标码&#xff0c;然后用坐标码进行BTREE的索引建立转载于:https://www.cnb…

angular 页面加载时可以调用 函数处理

转载于 作者:海底苍鹰地址:http://blog.51yip.com/jsjquery/1599.html 我希望页面加载的时候&#xff0c;我能马上处理页面的数据&#xff0c;如请求API .... 所以这样设置 在某个页面的控制器中 监听页面load phonecatControllers.controller(registerctr, [$scope, $routePa…

删除排序数组中的重复项

给定一个排序数组&#xff0c;你需要在原地删除重复出现的元素&#xff0c;使得每个元素只出现一次&#xff0c;返回移除后数组的新长度。 不要使用额外的数组空间&#xff0c;你必须在原地修改输入数组并在使用 O(1) 额外空间的条件下完成。 示例 1: 给定数组 nums [1,1,2…

android 处理鼠标滚轮事件 【转】

android处理鼠标滚轮事件&#xff0c;并不是如下函数&#xff1a; 1&#xff09; public boolean onKeyDown(int keyCode, KeyEvent event) 2) public boolean dispatchKeyEvent(KeyEvent event) 3) public boolean onTouchEvent(MotionEvent event) 而是如下函数 …

ASP.NET数据报表之柱状图 ------工作日志

#region 柱形色调 /// <summary> /// 柱形色调 /// </summary> private string[] myColor new string[] { "DarkGreen", "DimGray", "DodgerBlue", "Orchid", //Peru "Orange", "Orchid", &q…

接口安全--签名验证

为防止第三方冒充客户端请求服务器&#xff0c;可以采用参数签名验证的方法&#xff1a; 将请求参数中的各个键值对按照key的字符串顺序升序排列&#xff08;大小写敏感&#xff09;&#xff0c;把key和value拼成一串之后最后加上密钥&#xff0c;组成key1value1key2value2PRIV…

Runtime类

Runtime类也在java.lang包中&#xff0c;这个类没有提供构造器&#xff0c;但是提供的却非静态方法&#xff0c;而是在方法中提供了一个静态方法来返回当前进程的Runtime实例&#xff0c;采用的单例设计模式。 其作用&#xff1a;可以对当前java程序进程进行操作、打开本机程序…

Spring MVC 返回NULL时客户端用$.getJSON的问题

如果Spring MVC返回是NULL&#xff0c;那么客户端的$.getJSON就不会触发&#xff1b; 20170419补充 后台的输出为&#xff1a; DEBUG [org.springframework.web.servlet.DispatcherServlet] - Null ModelAndView returned to DispatcherServlet with name springMVC: assuming …

duilib设置滚动条自动滚动到底

控件属性中添加 vscrollbar"true" autovscroll"true"分别是启用竖向滚动条&#xff0c;是否随输入竖向滚动

MVC,MVP 和 MVVM 的图示

复杂的软件必须有清晰合理的架构&#xff0c;否则无法开发和维护。 MVC&#xff08;Model-View-Controller&#xff09;是最常见的软件架构之一&#xff0c;业界有着广泛应用。它本身很容易理解&#xff0c;但是要讲清楚&#xff0c;它与衍生的 MVP 和 MVVM 架构的区别就不容易…

Java JDBC学习实战(二): 管理结果集

在我的上一篇博客《Java JDBC学习实战&#xff08;一&#xff09;&#xff1a; JDBC的基本操作》中&#xff0c;简要介绍了jdbc开发的基本流程&#xff0c;并详细介绍了Statement和PreparedStatement的使用&#xff1a;利用这两个API可以执行SQL语句&#xff0c;完成基本的CURD…

error: storage size of ‘threads’ isn’t known

出错的代码行&#xff1a; pthread_t threads[NUM_THREADS];原因&#xff1a; NUM_THREADS 无值 原先&#xff1a; #define NUM_THREADS修改为 #define NUM_THREADS 5

android之相机开发

http://blog.csdn.net/jason0539/article/details/10125017 android之相机开发 分类&#xff1a; android 基础知识2013-08-20 22:32 9774人阅读 评论(2) 收藏 举报Android在android中应用相机功能&#xff0c;一般有两种&#xff1a;一种是直接调用系统相机&#xff0c;一种自…