提问者:小点点

为什么我的C++代码不能编译,得到未定义的引用错误[重复]


对于我的类作业,我们必须使用一个类来制作一个C++程序,然后编译它。这是以下几点。

#ifndef SNAKE_H
#define SNAKE_H

#include <iostream>
using namespace std;

// We need to include string since we need to access it
#include <string>
using std::string;
// Our declaration of our class
class Snake
{
public:
    // These are our properties
    string color;
    double length;
    bool venomous;

    // Our two constructors, this is basically saying the snake is able to create these datatypes.
    // It can either have a default data used or inputted data when called.
    Snake()
    {
    }
    // This one has the parameters
    Snake(string color, double length, bool venomous)
    {
    }

    // Our functions that we are declaring so we can use them in snake.cpp
    // These aren't declared here because we don't have any data yet that they can use
    // We also are just telling the code that they are here and that they may or
    // may not be called at some point

    void display();
    void bite();
};

#endif

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

// These creates our data from the header file.
// Snake is seen below with the default data and then Snake with the parameters can be seen.
Snake::Snake()
{
    color = "Red";
    length = 12.5;
    venomous = false;
}

Snake::Snake(string newColor, double newLength, bool newVenomous)
{
    color = newColor;
    length = newLength;
    venomous = newVenomous;
}

// These initalize these functions so that they can be used when we do our dot callback in our main.
void Snake::bite()
{
    cout << "This snake bites because he is hungry";
}

void Snake::display()
{
    cout << "The color of the snake is: " << color;
    cout << "The length of the snake is: " << length;
    cout << "Is the snake venomous: " << venomous;
}

#include <iostream>
#include "Snake.h"
using namespace std;

int main()
{
    // We create our first snake
    Snake snake1;
    // Now we need to call method that our object contains
    snake1.display();
    snake1.bite();

    // UI is user input
    bool UIVenomous;
    string UIColor, isVenomous;
    double UILength;

    cout << "What color is the snake?" << endl;
    cin >> UIColor;
    cout << "How long is the snake? " << endl;
    cin >> UILength;
    cout << "Is the snake venomous? (y/n) " << endl;
    cin >> isVenomous;
    if (isVenomous == "y")
    {
        UIVenomous = true;
    }
    else if (isVenomous == "n")
    {
        UIVenomous = false;
    }

    // We now call our class and set our object with the variables from above
    Snake snake2(UIColor, UILength, UIVenomous);
    // We need to now call our methods that our object has
    snake2.display();
    snake2.bite();
}

我正在使用VSCode,当我试图运行构建任务时,它会给我以下错误

C:\Users\viens\AppData\Local\Temp\cclzLMka.o: In function `main':
c:/Users/viens/OneDrive/Documents/SchoolWork/Lab3/main.cpp:10: undefined reference to `Snake::display()'
c:/Users/viens/OneDrive/Documents/SchoolWork/Lab3/main.cpp:11: undefined reference to `Snake::bite()'
c:/Users/viens/OneDrive/Documents/SchoolWork/Lab3/main.cpp:36: undefined reference to `Snake::display()'
c:/Users/viens/OneDrive/Documents/SchoolWork/Lab3/main.cpp:37: undefined reference to `Snake::bite()'
collect2.exe: error: ld returned 1 exit status
The terminal process terminated with exit code: 1

共2个答案

匿名用户

在我移除头文件中构造函数的主体之后,它定期编译。

/* Snake.h
*/
Snake();
Snake(string color, double length, bool venomous);

匿名用户

如果存在未定义的引用错误,通常是因为文件(从文件创建)不存在,并且您的编译器/构建系统无法链接它。

您可以在CLI中使用它:

相关问题


MySQL Query : SELECT * FROM v9_ask_question WHERE 1=1 AND question regexp '(c++|代码|编译|未定义|引用|重复)' ORDER BY qid DESC LIMIT 20
MySQL Error : Got error 'repetition-operator operand invalid' from regexp
MySQL Errno : 1139
Message : Got error 'repetition-operator operand invalid' from regexp
Need Help?