注册 登录
编程论坛 C++教室

里面一句代码看不懂.

q1826050194 发布于 2012-07-14 14:15, 665 次点击
//: C06:NString.h
// From "Thinking in C++, Volume 2", by Bruce Eckel & Chuck Allison.
// (c) 1995-2004 MindView, Inc. All Rights Reserved.
// See source code use permissions stated in the file 'License.txt',
// distributed with the code package available at www.
// A "numbered string" that keeps track of the
// number of occurrences of the word it contains.
#ifndef NSTRING_H
#define NSTRING_H
#include <algorithm>
#include <iostream>
#include <string>
#include <utility>
#include <vector>

typedef std::pair<std::string, int> psi;

// Only compare on the first element
bool operator==(const psi& l, const psi& r) {
  return l.first == r.first;
}

class NString {
  std::string s;
  int thisOccurrence;
  // Keep track of the number of occurrences:
  typedef std::vector<psi> vp;
  typedef vp::iterator vpit;
  static vp words;
  void addString(const std::string& x) {
    psi p(x, 0);
    vpit it = std::find(words.begin(), words.end(), p);
    if(it != words.end())
      thisOccurrence = ++it->second;
    else {
      thisOccurrence = 0;
      words.push_back(p);
    }
  }
public:
  NString() : thisOccurrence(0) {}
  NString(const std::string& x) : s(x) { addString(x); }
  NString(const char* x) : s(x) { addString(x); }
  // Implicit operator= and copy-constructor are OK here.
  friend std::ostream& operator<<(
    std::ostream& os, const NString& ns) {
    return os << ns.s << " [" << ns.thisOccurrence << "]";
  }
  // Need this for sorting. Notice it only
  // compares strings, not occurrences:
  friend bool
  operator<(const NString& l, const NString& r) {
    return l.s < r.s;
  }
  friend
  bool operator==(const NString& l, const NString& r) {
    return l.s == r.s;
  }
  // For sorting with greater<NString>:
  friend bool
  operator>(const NString& l, const NString& r) {
    return l.s > r.s;
  }
  // To get at the string directly:
  operator const std::string&() const { return s; }//请问这句是什么意思?
};

NString::vp NString::words;   ///////请问这句代码是什么意思啊?
#endif // NSTRING_H ///:~


[ 本帖最后由 q1826050194 于 2012-7-14 14:34 编辑 ]
3 回复
#2
peach54602012-07-14 15:26
1,重载了引用操作符
2,貌似是在做变量声明?这个我不太确定
#3
shapoo2012-07-14 18:12
1.  重载引用操作符
2.  words是NString的一个static成员变量.这个成员变量的类型为NString::vp(因为vp的定义在class NString里面,所以加上了::).
    类的静态成员变量必须在类的外面重新定义一下。
#4
peach54602012-07-14 20:47
类的静态成员变量必须在类的外面重新定义一下。

说这句,我就明白了
1