首頁  >  問答  >  主體

c++ - 老問題error LNK2005: "public: void __thiscall

// A.cpp
#include "A.h"

// A.h
#ifndef _A_H
#define _A_H
class A
{
public:
    A();
    ~A();


private:

};

A::A()
{
}

A::~A()
{
}
#endif
// test.cpp
#include "A.h"
int main(){

}

然後編譯就會出現error LNK2005: "public: void __thiscall問題,當刪除構造和析構函數可以通過?為什麼呢?還有我通過網上說的更改運行時庫還是不能編譯通過,怎麼辦? ?

巴扎黑巴扎黑2697 天前910

全部回覆(1)我來回復

  • 伊谢尔伦

    伊谢尔伦2017-06-24 09:45:00

    程式碼有沒有貼全,我在vs2015運作正常。

    
    #include <iostream>
    #include <vector>
    #include <iterator>
    
    using namespace std;
    
    class A
    {
    public:
        A();
        ~A();
    
    private:
    
    };
    
    A::A()
    {
    }
    
    A::~A()
    {
    }
    
    int main() 
    {
        
        
    
        return 0;
    }

    回覆
    0
  • 取消回覆