ストリームのオーバーロードによってc++内で同時にファイルとstdoutに書き込もうとしています
test.h
#pragma once
#include <iostream>
using std::ofstream;
class OutputAndConsole:public ofstream
{
public:
std::string fileName;
OutputAndConsole(const std::string& fileName):ofstream(fileName),fileName(fileName){
};
template <typename T>
OutputAndConsole& operator<<(T var);
};
template <typename T>
OutputAndConsole& OutputAndConsole::operator<<(T var)
{
std::cout << var;
ofstream::operator << (var);
return (*this);
};
test.cpp
OutputAndConsole file("output.txt");
file << "test" ;
ファイルの出力は次のとおりです。
01400930
しかし、コンソールには
test
入力しているように見えるコードをデバッグしました
_Myt& __CLR_OR_THIS_CALL operator<<(const void *_Val)
私は何が間違っているのですか?