首 页文档资料下载资料维修视频包年699元
请登录  |  免费注册
当前位置:精通维修下载 > 文档资料 > 家电技术 > 单元电路介绍 > 其它电路
如何为程序代码加上行号
来源:本站整理  作者:佚名  2011-05-13 09:34:00



若需要将程序代码放进词交报告或做文件时,或许我们会想将程序代码加上行号方便讲解,如同博客园显示程序代码那样,我们该如何做呢?

介绍
使用环境:Visual C++ 9.0/视觉演播室2008年

一段C++的小程序,可以帮程序代码加上行号后输出。

map_code_line.cpp/C++


1/*
2 (c) OOMusou 2008年
3
4文件名    : map_code_line.cpp
5编译器    : Visual C++ 9.0/视觉演播室2008年
6描述: 演示如何增加代码的行号
7发行     : 07/18/2008 1.0
8 *
9 #include <iostream>
10 #include <fstream>
11 #include <string>
12 #include <map>
13 #include <algorithm>
14
15使用namespace std;
16
17 infile的ifstream (“map_code_line.cpp”);
18 outfile的ofstream (“map_code_line_r.cpp”);
19  
20 struct print_map {
21空操作员() (pair<int, string> p) {
22     cout    << p.first << ““<< p.second << endl;
23     outfile << p.first << ““<< p.second << endl;
24}
25};
26
27 int扼要() {
28 map<int, string>线;
29
30串线;
31 int line_num = 1;
32,当时(infile的getline (线))
33     线[line_num++] =线;
34
35 infile.close ();
36  
37 for_each (lines.begin (), lines.end (), print_map ());
38 outfile.close ();
39}

执行结果

1/*
2 (c) OOMusou 2008年
3
4文件名    : map_code_line.cpp
5编译器    : Visual C++ 9.0/视觉演播室2008年
6描述: 演示如何增加代码的行号
7发行     : 07/18/2008 1.0
8 *
9 #include <iostream>
10 #include <fstream>
11 #include <string>
12 #include <map>
13 #include <algorithm>
14
15使用namespace std;
16
17 infile的ifstream (“map_code_line.cpp”);
18 outfile的ofstream (“map_code_line_r.cpp”);
19  
20 struct print_map {
21   空操作员() (pair<int, string> p) {
22     cout    << p.first << ““<< p.second << endl;
23     outfile << p.first << ““<< p.second << endl;
24   }
25};
26
27 int扼要() {
28   map<int, string>线;
29
30   串线;
31   int line_num = 1;
32   当时(infile的getline (线))
33     线[line_num++] =线;
34
35   infile.close ();
36  
37   for_each (lines.begin (), lines.end (), print_map ());
38   outfile.close ();
39}


32行


当时(infile的getline (线))
  线[line_num++] =线;

是整个程序的关键:使用地图,关键存放行号,价值存放每一行的程序代码。而且随着每一行程序代码的读入,自动增加行号。

37行


for_each (lines.begin (), lines.end (), print_map ());

将地图内容印出,因为地图无法配合拷贝(),只好退而求其次使用for_each ()与functor。

20行


struct print_map {
  空操作员() (pair<int, string> p) {
    cout    << p.first << ““<< p.second << endl;
    outfile << p.first << ““<< p.second << endl;
  }
};

配合for_each ()的functor, 22行的cout可以拿掉,只是方面在屏幕显示而已。

结论
STL的地图是很好用的容器,尤其子链写法,若索引下没有元素,会自动新增,所以才会有排行[line_number++] =线; 这么漂亮的写法。

关键词:

文章评论评论内容只代表网友观点,与本站立场无关!

   评论摘要(共 0 条,得分 0 分,平均 0 分)
Copyright © 2007-2017 down.gzweix.Com. All Rights Reserved .
页面执行时间:79,656.25000 毫秒