错误1错误C2678:二进制'!=':找不到哪个运算符带有'std :: ofstream'类型的左操作数(或者没有可接受的转换)

时间:2014-08-07 19:56:09

标签: c++ binary

我在调试或发布时遇到此错误

  
    

错误1错误C2678:binary'!=':找不到运算符,它接受类型为'std :: ofstream'的左手操作数(或者没有可接受的转换)c:\ users \ yuser \ desktop \ injector \ injector \ WriteLog.h 27 1注射器

  

可以帮助我解决这个问题吗

代码Writelog.h

#include <windows.h> 
#include <tlhelp32.h> 
#include <shlwapi.h> 
#include <conio.h> 
#include <stdio.h> 
#include <iostream>

#pragma warning(disable:4996)


using namespace std;


ofstream ofile;
char dlldir[320];
char LogFileName[20] = "Log.txt"; //Change this if you want

char *GetDirectoryFile(char *filename){
    static char path[320];
    strcpy(path, dlldir);
    strcat(path, filename);
    return path;
}

void WriteLog(const char *fmt, ...){
    if (ofile != NULL) <<< Problem is here on( ! ) gives error 
    {
        if (!fmt) { return; }
        va_list va_alist;
        char logbuf[256] = { 0 };
        va_start(va_alist, fmt);
        _vsnprintf(logbuf + strlen(logbuf), sizeof(logbuf) - strlen(logbuf), fmt, va_alist);
        va_end(va_alist);
        ofile << logbuf << endl;
    }
}


void logstart(HMODULE hDll){
    GetModuleFileName(hDll, dlldir, 512);
    for (int i = strlen(dlldir); i > 0; i--) { if (dlldir[i] == '\\') { dlldir[i + 1] = 0; break; } }
    ofile.open(GetDirectoryFile(LogFileName), ios::app);
}

2 个答案:

答案 0 :(得分:5)

该行

if (ofile != NULL)

在C ++ 03中有效,但在C ++ 11中无效。简单地使用

if (ofile)

答案 1 :(得分:1)

而不是检查NULL

你可以这样检查

if(ofile.bad() != TRUE)
{
   //Do Stuff
}