我试图通过重载 ofstream 在 C++ 中同时写入文件和标准输出
测试.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);
};
测试.cpp
OutputAndConsole file("output.txt");
file << "test" ;
文件中的输出是
01400930
但在控制台中是
test
我调试了看起来像是正在输入的代码
_Myt& __CLR_OR_THIS_CALL operator<<(const void *_Val)
我究竟做错了什么?