C ++错误C2653“级”不是类或命名空间名称(C++ Error C2653 'Clas

2019-08-02 10:47发布

下午好。 我已经开始学习C ++,我有和问题编译我的项目。 如果你发现一些错误代码,如果你告诉我,我会很高兴。

我有以下定义:

Utils.h

#include "stdafx.h"
#include <string>
using namespace std;

class Utils
{
public:
static string GetStringFromInt (int number);
};

Utils.cpp

#include "Utils.h"
#include <sstream>
#include <string>
using namespace std;

 string Utils::GetStringFromInt (int number)
{

    stringstream ss;
    ss << number;
    return ss.str();
}

Ping.h

#include "stdafx.h"
#include <string>

using namespace std;

class Ping
{
public:
    static int PingIt(int argc, char* argv[],string &mstime,string &ttl);   
};

Ping.cpp

#include "Ping.h"
#include <string>
#include "icmpdefs.h"
#include <string>
#include <iostream>
#include <sstream>
#include <WinSock.h>
#include <Windows.h>
#include "Utils.h"
#pragma comment(lib,"wsock32.lib")
using namespace std;

int Ping::PingIt(int argc, char* argv[],string &mstime,string &ttl)
{


    // Check for correct command-line args
    if (argc < 2) {
        cerr << "usage: ping <host>" << endl;
        return 1;
    }

    // Load the ICMP.DLL
    HINSTANCE hIcmp = LoadLibrary("ICMP.DLL");
    if (hIcmp == 0) {
        cerr << "Unable to locate ICMP.DLL!" << endl;
        return 2;
    }

    // Look up an IP address for the given host name
    struct hostent* phe;
    if ((phe = gethostbyname(argv[1])) == 0) {
        cerr << "Could not find IP address for " << argv[1] << endl;
        return 3;
    }

    // Get handles to the functions inside ICMP.DLL that we'll need
    typedef HANDLE (WINAPI* pfnHV)(VOID);
    typedef BOOL (WINAPI* pfnBH)(HANDLE);
    typedef DWORD (WINAPI* pfnDHDPWPipPDD)(HANDLE, DWORD, LPVOID, WORD,
            PIP_OPTION_INFORMATION, LPVOID, DWORD, DWORD); // evil, no?
    pfnHV pIcmpCreateFile;
    pfnBH pIcmpCloseHandle;
    pfnDHDPWPipPDD pIcmpSendEcho;
    pIcmpCreateFile = (pfnHV)GetProcAddress(hIcmp,
            "IcmpCreateFile");
    pIcmpCloseHandle = (pfnBH)GetProcAddress(hIcmp,
            "IcmpCloseHandle");
    pIcmpSendEcho = (pfnDHDPWPipPDD)GetProcAddress(hIcmp,
            "IcmpSendEcho");
    if ((pIcmpCreateFile == 0) || (pIcmpCloseHandle == 0) || 
            (pIcmpSendEcho == 0)) {
        cerr << "Failed to get proc addr for function." << endl;
        return 4;
    }

    // Open the ping service
    HANDLE hIP = pIcmpCreateFile();
    if (hIP == INVALID_HANDLE_VALUE) {
        cerr << "Unable to open ping service." << endl;
        return 5;
    }

    // Build ping packet
    char acPingBuffer[64];
    memset(acPingBuffer, '\xAA', sizeof(acPingBuffer));
    PIP_ECHO_REPLY pIpe = (PIP_ECHO_REPLY)GlobalAlloc(
            GMEM_FIXED | GMEM_ZEROINIT,
            sizeof(IP_ECHO_REPLY) + sizeof(acPingBuffer));
    if (pIpe == 0) {
        cerr << "Failed to allocate global ping packet buffer." << endl;
        return 6;
    }
    pIpe->Data = acPingBuffer;
    pIpe->DataSize = sizeof(acPingBuffer);      

    // Send the ping packet
    DWORD dwStatus = pIcmpSendEcho(hIP, *((DWORD*)phe->h_addr_list[0]), 
            acPingBuffer, sizeof(acPingBuffer), NULL, pIpe, 
            sizeof(IP_ECHO_REPLY) + sizeof(acPingBuffer), 5000);
    if (dwStatus != 0) {
        cout << "Addr: " <<
                int(LOBYTE(LOWORD(pIpe->Address))) << "." <<
                int(HIBYTE(LOWORD(pIpe->Address))) << "." <<
                int(LOBYTE(HIWORD(pIpe->Address))) << "." <<
                int(HIBYTE(HIWORD(pIpe->Address))) << ", " <<
                "RTT: " << int(pIpe->RoundTripTime) << "ms, " <<
                "TTL: " << int(pIpe->Options.Ttl) << endl;

        mstime = Utils::GetStringFromInt((pIpe->RoundTripTime));
        ttl = Utils::GetStringFromInt(int(pIpe->Options.Ttl));
    }
    else {
        cerr << "Error obtaining info from ping packet." << endl;
    }

    // Shut down...
    GlobalFree(pIpe);
    FreeLibrary(hIcmp);
    return dwStatus;
}

当我编译项目,我得到:

错误1错误C2653: '平安':不是类或命名空间名称C:\用户\ clanderasm \文档\ Visual Studio 2010的\项目\ landetestconsole \ landecplusconsole \ ping.cpp 14 1 LandeCplusConsole

我读过有时引发此错误,因为你不包括第一的#include“stdafx.h中”,但我已经改变了它。

如果你能告诉我更多的东西我会很高兴

Answer 1:

我不能给你的代码复制你的错误,但我想在VS2008和一些它提出让我觉得它很可能是很多的警告,由于没有被包含在源的预编译的头。 而且还有一些其他的问题,我可以看到,一定会以后会造成问题:

  • 不包括在.H编译头 。 (那么你应该甚至避免包括您的.h任何东西,除非绝对必要)。 (在做事的可视化的方式至少)预编译头是指被包括在第一各cpp文件(未.h)中。 如果你不这样做会提高警告,分别包括你有这样的:

    在这里你走你的观点类不再定义-寻找预编译头使用<时跳过: 警告C4627:“#包括‘Ping.h’”!

    最后一个错误致命错误C1010:意外的文件结尾,而寻找预编译头。 你忘了加上“#包括‘stdafx.h中’”你的来源?

    它实际上是消息编译你的VS2008代码时,我得到的,也许在VS2010你有没有除了那些定义你对点错误。 当整理出它编译罚款预编译头的问题(见下一点)

  • 使用预编译的头,并不意味着用于建造它会自动包含在所有的源.H。 要做到这一点,你必须改变一些项目设置: 右击项目- > 属性 ,在左边的面板中,展开配置属性- > C / C ++ - >高级 。 这里右边的列表中,你应该看到力包括 。 在此处键入stdafx.h中,就万事大吉了,你就不必手动把它放在每个你添加到项目中每一个新的.cpp。 要注意的是你必须做的是对书面上的所有配置(组合框“配置:活跃(调试)”

道歉,仍然是一个VS2008的屏幕,希望它在VS2010相同

  • 保护您的头 。 你应该把GARDS你的头,以避免你的类的多个定义在多个包括相同.H发生(将会)。 你可以这样做2种方式:在定义方法和编译一次方法。 杂注一次不标准,但编译视觉更快,所以你最终可以混合2种方式。

myheader.h使用编译一次:

#pragma once
class MyClass
{
    //<some definitions>
};

myheader.h使用限定:

#ifndef __MYHEADER_H
#define __MYHEADER_H
class MyClass
{
    //<some definitions>
};
#endif

myheader.h同时使用:

#pragma once
#ifndef __MYHEADER_H
#define __MYHEADER_H
class MyClass
{
    //<some definitions>
};
#endif
  • 它已经说过,但要避免在标题中使用“使用”的 ,因为它会蔓延。 我自己避免使用“使用”随处可见。


文章来源: C++ Error C2653 'Class' is not a class or namespace name
标签: c++ class