- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我正处于为学校作业编写一个小型日历库的最后阶段,我遇到了一个意想不到且非常令人困惑的问题;当我引入模板时,我的赋值运算符没有被覆盖!
所以结构如下:我有一个抽象类 Date
,主要是纯虚函数(包括赋值运算符),然后我有两个子类 Gregorian
和Julian
实现了它的所有功能。最后,我为 Calendar
类编写了一个模板,其中包含今天的日期(以 Gregorian
或 Julian
对象的形式)和一些其他与这个特定问题无关的东西。
问题是当试图设置这个成员 today
时,我得到一个很长的链接器错误:
Error 4 error LNK2019: unresolved external symbol "public: virtual class lab2::Date & __thiscall lab2::Date::operator=(class lab2::Date const &)" (??4Date@lab2@@UAEAAV01@ABV01@@Z) referenced in function "public: class lab2::Gregorian & __thiscall lab2::Gregorian::operator=(class lab2::Gregorian const &)" (??4Gregorian@lab2@@QAEAAV01@ABV01@@Z) C:\Users...\test.obj Calendar
告诉我它在
它告诉我 Date
类中找不到函数
operator=
(显然是因为它是纯虚拟的)。为什么它不使用任何被覆盖的?
Gregorian::operator=
正在尝试调用 Date::operator=
?
这是出错的简化代码:
namespace cal_lib {
template <typename T>
class Calendar {
public:
Calendar() {
today = T(); // this yields the error
}
private:
T today;
};
}
这是 Gregorian.cpp 的片段:
namespace cal_lib {
class Gregorian : public Date {
public:
Gregorian();
virtual Gregorian& operator=(const Date& date);
virtual Date& add_year(int n = 1);
virtual Date& add_month(int n = 1);
};
// here I'm using Date's constructor to get the current date
Gregorian::Gregorian() {}
Gregorian& Gregorian::operator=(const Date& date) {
if (this != &date) {
// these member variables are specified as
// protected in Date
m_year = 1858;
m_month = 11;
m_day = 17;
add_year(date.mod_julian_day()/365);
add_month((date.mod_julian_day() - mod_julian_day())/31);
operator+=(date.mod_julian_day() - mod_julian_day());
}
}
}
Date 的(默认)构造函数只是将 m_year
、m_month
和 m_day
的值设置为今天的日期:
Date::Date() {
time_t t;
time(&t);
struct tm* now = gmtime(&t);
m_year = now->tm_year + 1900;
m_month = now->tm_mon + 1;
m_day = now->tm_mday;
}
值得注意的是,这工作得很好:
Gregorian g;
Julian j;
g = j; // no problems here
Date* gp = new Gregorian();
Date* jp = new Julian();
*gp = *jp; // no problems here either
Calendar
类是这样实例化的:
using namespace cal_lib;
Calendar<Gregorian> cal;
我这里有什么非常明显的错误吗?
最佳答案
如果仔细阅读错误消息,您会注意到两件事,编译器正在尝试为以下内容找到定义:
Date& operator=(const Date&)
并且从以下定义中需要该符号:
Gregorian& operator=(const Gregorian&)
*那么那个运算符是怎么出现在你的程序中的呢? *
拷贝构造函数和赋值运算符比较特殊,它们总是会在程序中被声明。要么你提供一个声明,要么编译器会为你做。您提供了 Gregorian& Gregorian::operator=(const Date&)
,但这并没有从程序中删除 Gregorian& Gregorian::operator=(const Gregorian&)
。
当您尝试将一个 Gregorian
对象分配给另一个对象时,编译器会发现您的和隐式定义的两个重载,并且重载解析会发现隐式声明的赋值更匹配。这将以类似于以下的方式触发赋值运算符的定义:
T& operator=( T const & o ) {
Base::operator=(o); // for all bases
member=o.member; // for all members
}
您可以采取不同的措施来解决此问题。最简单的可能是在您的程序中定义 Date Date::operator=(const Date&)
(将其保留为纯虚函数,但也提供定义)。这样,当编译器遇到两个派生类型相同的对象时,它就可以施展魔法,一切都会正常进行。您还可以通过在派生类型中强制分派(dispatch),将其用作分解基成员拷贝的实现的方法。
另一个需要更多努力的选项是为所有派生类型实际声明和定义赋值运算符。这里要写更多的代码,处理 Date
成员的代码需要复制,如果修改基类,则需要更新所有派生赋值运算符。 .我不会走那条路。
最后,一旦修复了编译器错误,请考虑您的赋值运算符的实现对于一般的 Date
(实际上可能是 Gregorian
)是否有意义日期)。想想如果你这样做会发生什么:
Gregorian d1 = ...; // some date
Gregorian d2 = d1; // same date
Date &d = d2;
d1 = d2; // What date does 'd1' represent??
请注意,如果您提供 Date::operator=
的定义并让编译器生成 Gregorian::operator=(Gregorian const&)
,此示例中的问题就会消失> 为你。
关于C++:使用模板时未覆盖函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13184510/
namespace std { template <> class hash{ public : size_t operator()( cons
我正在构建一个 Javascript 交互性有限的 Django 应用程序,并且正在研究如何将 Vue 模板与 Django 模板合并以实现相同的内容。 想象一个无限滚动的页面,其中 SEO 非常重要
我需要一个由游戏逻辑组成的外部类,调用 LitElement 组件,并向其传递一个 html 模板文字,该组件将使用该文字来更新其自己的 html 模板文字的一部分。 在下面的代码中,您将看到组件的一
很简单,我不想在 html 文件中定义所有 Handlebars 模板 我试过了 但这并没有奏效。我是否可以不以编程方式定义模板,甚至只是加载 Handlebars 文件,以便我可以重用,而且我觉得
在此代码中,j 正确地成为对象:j.name、j.addr、j.city、j.state 和 j.zip。但是,成功函数有一个 JavaScript 错误 .tmpl() 不是函数。 {{t
Django模板不会?点进来,总结了模板语法传值取值、过滤器和自定义过滤器、模板标签的分类、中间件403报错如何解决、如何继承模板~👆 Django 模板 模板传值取值 后端传值 键值对形式:{‘n
哈喽大家好,我是鹿 九 丸 \color{red}{鹿九丸}鹿九丸,今天给大家带来的是C++模板。 如果大家在看我的博客的过程中或者学习的过程中以及在学习方向上有什么问题或者想跟我交流的话可以加我的企
我正在用 PHP 编写一个简单的模板层,但我遇到了一些困难。目前它是这样工作的: 首先,我使用 fetch_template 从数据库中加载模板内容 - 这可行(如果您有兴趣,我会在启动时收集所有模板
我正在制作有关模板的 Django 教程。我目前处于此代码: from django.template import Template, Context >>> person = {'name': '
我正在使用 Jquery 模板来显示传入的 JSON 数据我想将模板加载到可缓存的外部文件中。我该怎么做? 更新 http://encosia.com/2010/12/02/jquery-templa
这是我的观点.py: from django.http import HttpResponse from django.template.loader import get_template from
我试图说服一位同事在项目的前端使用 Mustache/Hogan,我提出了以下建议: 有一个 templates.js 文件,大致如下所示: var tpl_alert = '{{msg}}'; va
我想创建一个通用的数组函数。在我的 API 中,我有一个通用容器,我需要将其转换为正确的类,但我想让它通用 template void UT::printArray(CCArray* arr, T t
有谁知道是否有办法在 Genshi 中创建 javascript 模板?我的意思是,我需要一个 .js 文件,可以在其中使用 等指令。等等。 有什么想法吗?谢谢! 最佳答案 你可以直接在html中这
我想知道是否可以设置某种 HTML 模板系统,基本上我有 3 个不同的文件: - header.html - footer.html - landing.html(landing.html 是包含页面
我正在尝试构建以下 HTML 模板: 这很简单,如果我使用红色容器 1-4,语法如下: 1 2 3 4 5 6 7 8 9 https://jsfi
#include "boost/numeric/ublas/matrix.hpp" using namespace boost::numeric::ublas; template class Lay
我在一个类中有一个函数,它传递了一个函数及其参数,然后将它们绑定(bind)到一个函数调用中并调用该函数等。 这已经被快速组合在一起以测试我知道代码不是很好的概念。 class Profiling {
是否有一个 c++ 结构或模板(在任何库中)允许我在十进制和任何其他基数之间进行转换(很像 bitset 可以做的)? 最佳答案 是的,你可以使用unsigned int: unsigned int
数据类型给程序设计带来的困扰及解决方案 int maxt(int, int); double maxt(double, double); 若有一种占位符T,能够代替类型,便可以简化代码的冗余编写
我是一名优秀的程序员,十分优秀!