CPP在主源文件中包含.cpp文件会导致&Quot;重复符号&错误

cpp include .cpp files in main source file causes quot;duplicate symbolquot; error(CPP在主源文件中包含.cpp文件会导致Quot;重复符号错误)
本文介绍了CPP在主源文件中包含.cpp文件会导致&Quot;重复符号&错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我一直纠结于如何将一个项目分成几个源文件和头文件。我目前的做法似乎是笨拙和错误的。欢迎提出任何意见!

我有四个文件:

  • main.cpp是主程序。它将创建几个树节点,并调用一个函数来遍历它们。
  • TreeNode.h是我声明简单类的头文件TreeNode
  • TreeNode.cpp是定义类的构造函数TreeNode
  • 的地方
  • utils.cpp是我在TreeNode上定义的几个函数,比如打印出树。

问题是,includeTreeNode.h文件应该放在哪里?

  • 如果我在main.cpputils.cpp中都包含它(因为它们都使用TreeNode类,所以我的编译器会给我一个"重复符号"错误。这可能是因为我在main.cpp中也包含了utils.cpp

这样:

Scanning dependencies of target main
[ 25%] Building CXX object CMakeFiles/main.dir/main.cpp.o
[ 50%] Building CXX object CMakeFiles/main.dir/utils.cpp.o
[ 75%] Linking CXX executable main
duplicate symbol __Z13inorder_printP8TreeNode in:
    CMakeFiles/main.dir/main.cpp.o
    CMakeFiles/main.dir/utils.cpp.o
duplicate symbol __Z16inorderTraversalP8TreeNode in:
    CMakeFiles/main.dir/main.cpp.o
    CMakeFiles/main.dir/utils.cpp.o
ld: 2 duplicate symbols for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make[3]: *** [main] Error 1
make[2]: *** [CMakeFiles/main.dir/all] Error 2
make[1]: *** [CMakeFiles/main.dir/rule] Error 2
make: *** [main] Error 2`
  • 如果我只在main.cpp文件中包含TreeNode.hutils.cpp文件将无法编译。它显示错误error: unknown type name 'TreeNode'

编辑:

以下是四个文件:

main.cpp

#include <iostream>
#include <vector>
#include "TreeNode.h"
#include "utils.cpp"

using namespace std;

int main() {
    TreeNode * root = new TreeNode(0);
    root->right = new TreeNode(2);
    root->right->right = new TreeNode(3);

    // inorder_print(root);
    std::vector<int> v = inorderTraversal(root);

    // print out vector
    for (auto i = v.begin(); i != v.end(); ++i){
        std::cout << *i << ' ';
    }
    std::cout << std::endl;
    return 0;
}

TreeNode.h

#ifndef TREE_TREE_H
#define TREE_TREE_H

class TreeNode{
public:
    int val;
    TreeNode * left;
    TreeNode * right;

    TreeNode(int x);
};

#endif //TREE_TREE_H

TreeNode.cpp

#include "TreeNode.h"

TreeNode::TreeNode(int x) {
    val = x;
    left = nullptr;
    right = nullptr;
}

utils.cpp

#include <vector>
#include <iostream>
// #include "TreeNode.h"

// tested correct
void inorder_print(TreeNode * root){
    // print out the tree content in inorder traversal
    while(root != nullptr){
        std::cout << root->val << std::endl;
        inorder_print(root->left);
        inorder_print(root->right);
        break;
    }
}

std::vector<int> inorderTraversal(TreeNode * root){
    std::vector<int> v;
    while(root != NULL){
        v.push_back(root->val);
        if (root->left != NULL){
            v.insert(v.end(), inorderTraversal(root->left).begin(), inorderTraversal(root->left).end());
            break;
        }
        if (root->right != NULL){
            v.insert(v.end(), inorderTraversal(root->right).begin(), inorderTraversal(root->right).end());
            break;
        }
        break;
    }
    return v;
}

推荐答案

如您的编译器输出所示,您正在编译main.cpputils.cpp。您的main.cpp包括utils.cpp,因此您在那里定义的函数会被编译两次,因此会出现重复符号。

根据经验,永远不要包含.cpp文件。将#include视为将一个文件的内容直接包含到另一个文件中。我想您尝试解决了mail.cpp中的utils.cpp中的内容无法使用的问题。要解决TreeNode.h(例如int foo(double);)中的添加函数声明,同时将其定义保留在utils.cpp(例如int foo(double) { return 0; })

这篇关于CPP在主源文件中包含.cpp文件会导致&Quot;重复符号&错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Unknown type name __m256 - Intel intrinsics for AVX not recognized?(未知类型名称__M256-英特尔AVX内部功能无法识别?)
How can an declare an array in a function that returns an array in c++(如何在用C++返回数组的函数中声明数组)
Is it possible to define a class in 2 or more file in C++?(在C++中可以在两个或多个文件中定义一个类吗?)
Why can#39;t I create an array of automatic variables?(为什么我不能创建一个自动变量数组?)
zeromq: reset REQ/REP socket state(Zeromq:重置REQ/REP套接字状态)
Can I resize a vector that was moved from?(我可以调整从中移出的矢量的大小吗?)