作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
g++ 在链接阶段无法编译以下文件,并出现多个 undefined reference to [function]
错误。
我正在使用教科书学习 C++11。关于这个主题的所有其他问题和答案都涉及 makefile 或模板,我没有在这里使用。
g++ 版本为 7.3.0 (Ubuntu 7.3.0-27ubuntu1~18.04)。
主要.cpp:
#include "Screen.h"
// #include <string>
using std::string;
// #include <iostream>
using std::cout;
using std::endl;
int main()
{
Screen myScreen(5, 5, 'X');
myScreen.move(4,0).set('#').display(cout);
cout << endl;
myScreen.display(cout);
cout << endl;
return 0;
}
屏幕.h:
#ifndef SCREEN_H
#define SCREEN_H
#include <string>
#include <iostream>
class Screen
{
public:
// typedefs
using pos = std::string::size_type;
// constructors
Screen()
= default;
Screen(pos ht, pos wd):
height (ht),
width (wd),
contents(ht * wd, ' ')
{}
Screen(pos ht, pos wd, char c):
height (ht),
width (wd),
contents(ht * wd, c)
{}
// public member functions
char get () const;
inline char get (pos, pos) const;
Screen& move (pos, pos);
Screen& set (char);
Screen& set (pos, pos, char);
Screen& display(std::ostream&);
const Screen& display(std::ostream&) const;
private:
// class variables
pos cursor = 0,
height = 0,
width = 0;
std::string contents ;
// private member functions
void do_display(std::ostream&) const;
};
#endif
屏幕.cpp:
#include "Screen.h"
// #include <string>
using std::string;
// #include <iostream>
/*
#### # # #### # ### ###
# # # # # # # # # #
#### # # #### # # #
# # # # # # # # #
# ### #### ##### ### ###
# # ##### # # #### ##### #### ####
## ## # ## ## # # # # # #
# ## # #### # ## # #### #### #### ###
# # # # # # # # # # #
# # ##### # # #### ##### # # ####
*/
char Screen::get() const
{return contents[cursor];}
/*inline*/ char Screen::get (pos r, pos c) const
{
pos row = r * width;
return contents[row + c];
};
inline Screen& Screen::move(pos r, pos c)
{
pos row = r * width;
cursor = row + c;
return *this;
}
inline Screen& Screen::set(char c)
{
contents[cursor] = c;
return *this;
}
inline Screen& Screen::set(pos row, pos col, char ch)
{
contents[(row * width) + col] = ch;
return *this;
}
Screen& Screen::display(std::ostream& os)
{
do_display(os);
return *this;
}
const Screen& Screen::display(std::ostream& os) const
{
do_display(os);
return *this;
}
/*
#### #### ### # # ### ##### #####
# # # # # # # # # # #
#### #### # # # ##### # ####
# # # # # # # # # #
# # # ### # # # # #####
# # ##### # # #### ##### #### ####
## ## # ## ## # # # # # #
# ## # #### # ## # #### #### #### ###
# # # # # # # # # # #
# # ##### # # #### ##### # # ####
*/
inline void Screen::do_display(std::ostream& os) const
{os << contents;}
我遵循了书中的所有内容,所以我希望 g++ 能够毫无错误地编译文件。但是我在控制台中收到这些错误:
$ g++ -o program main.cpp Screen.cpp -std=c++11
/tmp/ccBELGiY.o: In function `main':
main.cpp:(.text+0x45): undefined reference to `Screen::move(unsigned long, unsigned long)'
main.cpp:(.text+0x52): undefined reference to `Screen::set(char)'
collect2: error: ld returned 1 exit status
我有一堆金雅拓 java 卡,如下所示,我可以使用 GlobalPlatformPro 进行相互身份验证过程。 : C:\globalPlatformPro> gp -visa2 -key 47454
m4 可以与不同的编程语言一起使用,因为它对无法识别的文本的默认策略是输出,并且它具有方便预处理器使用所需的引用机制。我的意思是,我可以以我的 IDE 认为它是 Ada 的方式编写预处理代码。 m4
我正在尝试编译一个巨大的、世界知名的数值天气预报代码——主要是用 Fortran 90 编写的——它广泛地使用 cpp,并且成功地与 PGI、英特尔和 gfortran 一起使用。现在,我继承了一个版
这个问题在这里已经有了答案: What is an undefined reference/unresolved external symbol error and how do I fix it?
我正在为我的 C++ 相关工作使用原子编辑器。但是在使用 gpp 编译器包编译和运行 C++ 文件时,会在主目录中创建一个 filename.o 文件。每次我编译和运行我的代码时都会发生这种情况。这个
我是一名优秀的程序员,十分优秀!