0

自分のバージョンを試してみると、

エラー C2039: 'endl': 'abc' のメンバーではありません エラー C2065: 'endl': 宣言されていない識別子

これが以下のコードです。

#include <iostream>
#include <stdio.h>

//assume this class uses some proprietary logging system.  I just use the wrap the C
//output functions here but assume is a corporate log system
namespace abc {

   class log_stream
   {
   public:
      log_stream(const char* filename) {
         fp_ = fopen(filename, "w");
      }

      log_stream& operator<<(short val)          { if (fp_) { output_int(val); } return *this; }
      log_stream& operator<<(unsigned short val) { if (fp_) { output_int(val); } return *this; }
      log_stream& operator<<(int val)            { if (fp_) { output_int(val); } return *this; }
      log_stream& operator<<(unsigned int val)   { if (fp_) { output_int(val); } return *this; }
      log_stream& operator<<(long val)           { if (fp_) { output_int(val); } return *this; }
      log_stream& operator<<(unsigned long val)  { if (fp_) { output_int(val); } return *this; }
      log_stream& operator<<(const char* val)    { if (fp_) { output_string(val); } return *this; }
      inline log_stream& endl(log_stream& os)  { return os.endl(); }
      //etc
      log_stream& endl() {
         if(fp_)
            fputc('\n', fp_);
         return *this;
      }

   private:
      void output_int(long v) { fprintf(fp_, "%d", v); }
      void output_string(const char* s) { fprintf(fp_, "%s", s); }
      FILE* fp_;
   };
}  //namespace abc

int main() {
   abc::log_stream logger("myfile.txt");
   //error C2039: 'endl' : is not a member of 'abc', error C2065: 'endl' : undeclared identifier
   logger << "number " << 3 << abc::endl;
   return 0;
}

アップデート:

追加すると

inline log_stream& endl(log_stream& os)  { return os.endl(); }

abc名前空間内(ただし、クラスの外では、取得します

error C2678: binary '<<' : no operator found which takes a left-hand operand of type 'abc::log_stream' (or there is no acceptable conversion)

これは解決に近づいていますが (私はそう思います)、まだそこにはありません。

更新2。

まあ、それは毛むくじゃらでした!これは、似たようなことをしている人のために問題を修正した方法です。ありがとうジュリアン。

これらをクラスに追加しました:

  ~log_stream() { if(fp_) fclose(fp_); }

  // this is the main one I was missing
  abc::log_stream& abc::log_stream::operator<<( log_stream& (*pf)(log_stream&) )
  {
     return pf(*this);
  }

次に、クラス外:

abc::log_stream& endl( abc::log_stream& log ) { log.endl(); ログを返します。}

4

2 に答える 2

1

std::endlstd::ostreamは単一のパラメーターとしてa を受け取る関数でostream<<あり、 の型を取るオーバーロードですstd::endl

この動作を にコピーするにlog_streamは、オーバーライドstd::endlします。

abc::log_stream& std::endl( abc::log_stream& log )
{
    log.endl();
    return log;
}

オーバーライドabc::log_stream::operator<<して使用します。

abc::log_stream& abc::log_stream::operator<<( log_stream& (*pf)(log_stream&) )
{
    return pf(*this);
}

ご覧のとおり、 の引数は引数としてabc::log_stream::operator<<の型を取りstd::endlます。

std::endl また、 stream をフラッシュすることに注意してください。したがって、電話をかけることを検討する必要がありfflush(fp_)ますabc::log::endl()

于 2013-09-27T15:16:11.173 に答える
0

I think you should make an operator<< that takes your endl type. Or let it take std::endl. See also this answer to a similar question: https://stackoverflow.com/a/1134467/4323 - basically, endl is a function like you have, but you need to make an insertion operator for your class that accepts that function as its right-hand argument, and invokes it.

于 2013-09-27T14:43:40.093 に答える