码迷,mamicode.com
首页 > 编程语言 > 详细

对C++ Primer的10.3.9单词转换的思考

时间:2014-06-09 00:04:20      阅读:334      评论:0      收藏:0      [点我收藏+]

标签:c   style   class   blog   code   java   

bubuko.com,布布扣
#include <iostream>
#include <string>
#include <map>
#include <fstream>
#include <sstream>

using namespace std;
ifstream& open_file(ifstream&,const string&);

int main(int argc, char **argv)
{
    map<string, string> trans_map;
    string key, value;
    if (argc!= 3)
        throw runtime_error("wrong number of arguments");
    ifstream map_file;
    if (!open_file(map_file, argv[1]))
        throw runtime_error("no transformation file");
    while (map_file>>key>>value)
        trans_map.insert(make_pair(key, value));
    ifstream input;
    if (!open_file(input, argv[2]))
        throw runtime_error("no input file");
    string line; 
    while (getline(input, line))
    {
        istringstream stream(line); 
        string word;
        bool firstword = true;
        while (stream >> word) {
            map<string, string>::const_iterator map_it =trans_map.find(word);
            if (map_it != trans_map.end())
                word = map_it->second;
            if (firstword)
                firstword = false;
            else
                cout << " ";
            cout << word;
        }
        cout << endl; 
    }
    return 0;
}
bubuko.com,布布扣

这篇代码有几个知识点可以复习一下:

1.main函数的形参

  main(int argc, char **argv); 

argc是一个整型变量,指的是命令行输入参数的个数,argv是字符串数组,它包含argc个字符串,每个字符串存储着一个命令行参数,其也可以写作char *argv[]。如argv[0]存储着第一个命令行参数字符串,argv[1]存储着第二个命令行参数字符串,argv[argc-1]存储着最后一个命令行参数字符串。一般来说,argv[0]存储的是当前程序的路径与全称。

argc和argv就是一个名字,可以改变的,如写成arc和arv,丝毫不影响。

对C++ Primer的10.3.9单词转换的思考,布布扣,bubuko.com

对C++ Primer的10.3.9单词转换的思考

标签:c   style   class   blog   code   java   

原文地址:http://www.cnblogs.com/betteryi/p/3775381.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!