30

我一定错过了一个带有标题和包含的基本概念,因为当我尝试从单独的源文件中调用最简单的函数时,我得到一个错误:

main.obj:-1:错误:LNK2019:函数 _main 中引用的未解析外部符号“void __cdecl buildDeck(int,int)”(?buildDeck@@YAXHH@Z)

甲板.h

#ifndef DECK_H
#define DECK_H
#include <QString>


void buildDeck(int deckSize, int jokers);


struct card
{
    QString suit;
    QString color;
    int rank;
};

#endif // DECK_H

甲板.cpp

#include"mainwindow.h"
#include "deck.h"

void buildDeck(int deckSize, int jokers)
{
    int blackRed = deckSize-=jokers;
}

主文件

#include "mainwindow.h"
#include "deck.h"
#include <QApplication>
#include <QPushButton>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();

    buildDeck(10,20);

    return a.exec();
}

这给了我一个错误。但是,如果我将函数定义从 deck.cpp 移动到 main.cpp 的底部,则应用程序将构建。

所有文件都包含在同一个项目中,并存储在同一个目录中。

其他文件:

。轮廓

QT       += core gui

greaterThan(QT_MAJOR_VERSION, 4): QT += widgets

TARGET = carddeck
TEMPLATE = app


SOURCES += main.cpp\
        mainwindow.cpp \
    deck.cpp

HEADERS  += mainwindow.h \
    deck.h

FORMS    += mainwindow.ui

不确定你是否需要它,但这里是 mainwindow.h

#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QMainWindow>
#include <QPushButton>
#include <QTextEdit>
#include <QCheckBox>

namespace Ui {
class MainWindow;
}

class MainWindow : public QMainWindow
{
    Q_OBJECT

public:
    explicit MainWindow(QWidget *parent = 0);
    ~MainWindow();

private slots:
    void runButtonClicked();

private:
    Ui::MainWindow *ui;
    QPushButton *runButton;
    QTextEdit * runText;

    QCheckBox * betHearts;
    QCheckBox * betDiamonds ;
    QCheckBox * betClubs;
    QCheckBox * betSpades ;
    QCheckBox * betFlush ;
    QCheckBox * betAllRed;
    QCheckBox * betAllBlack ;

};

#endif // MAINWINDOW_H
4

2 回答 2

80

当您编辑 .pro 文件时,看起来 Makefile 没有重新生成。运行 qmake 并重试。您还可以检查 deck.cpp 是否已编译;构建目录中有deck.o吗?

于 2012-12-28T13:05:42.760 回答
3

是的,当您更改 .pro 文件时,有时 Makefile 文件不会更新。所以你必须运行 qmake。

请按照以下步骤操作:

  • 右键单击项目 Clean / Build 菜单 -> cleanAll
  • 右键单击项目 Run qmake / Build menu -> runQmake
  • 右键单击项目构建/构建菜单->构建

专业建议:

我不知道,但有时 Qt 不会更新 Makefile。因此,每当您在项目中添加/删除任何资源或 .pro 文件中发生任何更改时,我都向所有人推荐,只需运行 qmake 并构建您的项目(手动运行 qmake 以更新项目的路径,这有助于找到主窗口.obj 文件)。

于 2018-05-31T06:54:01.253 回答