⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 memfun3.cpp

📁 Think in C++ 第二版源码
💻 CPP
字号:
//: C21:MemFun3.cpp

// From Thinking in C++, 2nd Edition

// Available at http://www.BruceEckel.com

// (c) Bruce Eckel 1999

// Copyright notice in Copyright.txt

// Using mem_fun()

#include "NumStringGen.h"

#include <algorithm>

#include <vector>

#include <string>

#include <iostream>

#include <functional>

using namespace std;



int main() {

  const int sz = 9;

  vector<string> vs(sz);

  // Fill it with random number strings:

  generate(vs.begin(), vs.end(), NumStringGen());

  copy(vs.begin(), vs.end(), 

    ostream_iterator<string>(cout, "\t"));

  cout << endl;

  const char* vcp[sz];

  transform(vs.begin(), vs.end(), vcp, 

    mem_fun_ref(&string::c_str));

  vector<double> vd;

  transform(vcp,vcp + sz,back_inserter(vd),

    std::atof);

  copy(vd.begin(), vd.end(), 

    ostream_iterator<double>(cout, "\t"));

  cout << endl;

} ///:~

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -