首页 > 解决方案 > VS Code C++ OOP 不工作 Mac OS High Sierra

问题描述

大家好,我是 vs 代码的新手,我找不到使用面向对象编程的解决方案

当我创建一个 .h 文件来调用对象函数时出现错误

123MacBook-Pro-de-Rogerio: life DJMatrix $ cd "/ Users / DJMatrix / Documents / Classes / c ++ / life /" && g ++ main.cpp -o main && "/ Users / Dtrix / Documents / Classes / c ++ / life / "main
Undefined symbols for architecture x86_64:
  "Life :: tryAgain ()", referenced from:
      _main in main-ea3ce4.o
ld: symbol (s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)

打印

主.cpp:

#include <iostream>
#include "life.h"

using namespace std;

int main()
{
    Life life;
    life.tryAgain();
    return 0;
}

生活.h:

#include <iostream>
using namespace std;

class Life
{
public:
    bool sucess;
  void tryAgain();
  void improve();
};

生活.cpp:

#include "life.h"

void Life::tryAgain()
{
  cout << "Trying again!!!" << endl;
}

void Life::improve()
{
  cout << "Improve !!" << endl;
}

标签: c++macosoopvisual-studio-codeclang++

解决方案


从我从 VSCode 终端看到的,只有main.cpp正在编译。当您生成最终二进制文件时,目标文件life.cpp没有被链接,这就是为什么它抱怨Life::tryAgain()符号丢失的原因。

这取决于您是手动调用编译器还是使用 Makefiles 或让 VSCode 为您完成所有这些工作;不管编译命令应该是这样的:

g++ -o main life.cpp main.cpp


推荐阅读