要件があり、データを使用printf
しcout
て表示する必要がありconsole and file
ます。printf
私はそれをしましたが、私cout
は苦労しています。
#ifdef _MSC_VER
#define GWEN_FNULL "NUL"
#define va_copy(d,s) ((d) = (s))
#else
#define GWEN_FNULL "/dev/null"
#endif
#include <iostream>
#include <fstream>
using namespace std;
void printf (FILE * outfile, const char * format, ...)
{
va_list ap1, ap2;
int i = 5;
va_start(ap1, format);
va_copy(ap2, ap1);
vprintf(format, ap1);
vfprintf(outfile, format, ap2);
va_end(ap2);
va_end(ap1);
}
/* void COUT(const char* fmt, ...)
{
ofstream out("output-file.txt");
std::cout << "Cout to file";
out << "Cout to file";
}*/
int main (int argc, char *argv[]) {
FILE *outfile;
char *mode = "a+";
char outputFilename[] = "PRINT.log";
outfile = fopen(outputFilename, mode);
char bigfoot[] = "Hello
World!\n";
int howbad = 10;
printf(outfile, "\n--------\n");
//myout();
/* then i realized that i can't send the arguments to fn:PRINTs */
printf(outfile, "%s %i",bigfoot, howbad); /* error here! I can't send bigfoot and howbad*/
system("pause");
return 0;
}
私はそれをCOUT
(キャップ、上記のコードのコメント部分) で行いました。しかし、 normal を使用したいstd::cout
ので、どうすればオーバーライドできますか。そして、それは両方sting and variables
のように機能するはずです
int i = 5;
cout << "Hello world" << i <<endl;
または、とにかくstdout
データをキャプチャして、簡単に書き込むこともできますかfile and console
。