gpt4 book ai didi

c++ - 我正在使用 Dev-C++ 并收到一个编译器错误,提示 "collect2.exe"正在接收状态 1

转载 作者:太空宇宙 更新时间:2023-11-04 13:30:59 25 4
gpt4 key购买 nike

我已阅读有关此错误的其他帖子,但无法解决我的问题。这对我的代码来说可能是显而易见的,但代码对我来说似乎很好。编译器日志输出为:

mingw32-make.exe -f "C:\Users\Michael\Desktop\Durham Courses\Summer 2015\OOP Object-Oriented Programming\Dev CPP Directory\Makefile.win" all

g++.exe cash.o main.o -o Lab3Functions.exe -L"C:/Program Files (x86)/Dev-Cpp/MinGW64/lib" -L"C:/Program Files (x86)/Dev-Cpp/MinGW64/x86_64-w64-mingw32/lib" -static-libgcc

main.o:main.cpp:(.text+0x0): multiple definition of `cash(double, int&, int&, int&, int&, int&, int&, int&)'

cash.o:cash.cpp:(.text+0x0): first defined here

collect2.exe: error: ld returned 1 exit status

C:\Users\Michael\Desktop\Durham Courses\Summer 2015\OOP Object-Oriented Programming\Dev CPP Directory\Makefile.win:25: recipe for target 'Lab3Functions.exe' failed

mingw32-make.exe: *** [Lab3Functions.exe] Error 1

Compilation failed after 0.91 seconds with errors

会不会是这个多重定义位接近尾声?我所做的(根据我的任务)创建了一个文件 (cash.cpp),其中包含 cash 函数的定义,然后我得到了:

#include "cash.cpp" 

在我的主目录的顶部。那不对吗?

最佳答案

我试过模拟你的问题:

这是我的 test.cpp 的主要功能:

#include <stdio.h>
#include "cash.cpp"

using namespace std;

int main()

{
printf("%d",cash());
return 0;
}

And here is cash.cpp:

int cash()
{
return 10;
}

10 是输出。

您的 cash.cpp 和主文件必须在同一目录中。并确保同一目录中只有一个这样的文件。

也可能与 Windows 上的 C 驱动器权限有关。在这种情况下,可以在此处找到解决方法:Dev C++ compilation error, permission denied.

另请参阅 this (可能链接器失败)。检查函数的前向声明是否与定义一致。

关于c++ - 我正在使用 Dev-C++ 并收到一个编译器错误,提示 "collect2.exe"正在接收状态 1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31480544/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com