- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我决定测试“Effective C++”中的示例之一,但没有得到预期的结果。所以,显然这个(简化的)代码不应该编译:
template <class T>
struct A {
void f(){}
};
template <class T>
struct B : public A <T> {
void f2() { f(); } // calling base function - will not compile
};
这是解释(为简单起见更改了类名):
The code above won't compile, at least not with conformant compilers. Such compilers will complain that
f
doesn't exist. We can see thatf
is in the base class, but compilers won't look for it there.We need to understand why. The problem is that when compilers encounter the definition for the class template
B
, they don't know what class it inherits from. Sure, it'sA<T>
, butT
is a template parameter, one that won't be known until later (whenB
is instantiated). Without knowing whatT
is, there's no way to know what the classA<T>
looks like. In particular, there's no way to know if it has af
function.
我的编译器 (Visual Studio) 不介意...它甚至不显示任何警告。
以上代码是否正确?
最佳答案
template <class T>
struct A {
void f(){}
};
template <class T>
struct B : public A <T> {
void f2() { f(); } // calling base function - will not compile
};
在派生模板中,表达式 f()
不依赖于任何模板参数,因此编译器会尝试在第一阶段查找期间解析它。此时,模板还没有用类型实例化,编译器不会查看基类A<T>
。 .原因是编译器不可能知道实例化的类型是否有 A<T>
的特化。可能不包含任何成员。
解决方案是使表达式依赖,最简单的方法是用 this->
限定:
template <typename T>
void B<T>::f2() { this->f(); }
由于表达式现在是依赖的,查找被延迟到第二阶段,其中类型被替换并且 A<T>
是具体类型。另一种选择是使用定义它的类进行限定:
template <typename T>
void B<T>::f2() { A<T>::f(); }
表达式再次变得依赖并将在第二阶段解决。主要区别在于,在第二种情况下,调用是合格的,因此它不使用动态调度。如果A<T>::f()
是虚拟的,它仍然会执行 A<T>::f()
,而不是最终的替代者。
代码是否正确?没有。VS接受吗?是的。
这是 Visual Studio 编译器中一个已知的不符合项,它没有实现两阶段查找。它将模板内的所有查找延迟到第二阶段,此时查找成功。
关于c++ - 为什么我可以从派生类调用基模板类方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19128796/
我有一个无法理解的奇怪编译问题。 //I know, you should never derive from the STL Library template class SharedClass :
我是一个刚开始学习 Haskell 的菜鸟,所以如果我问愚蠢的问题,请耐心等待。 最近我在 SO 中遇到了演示如何导出函数和表达式的类型和实现的问题(诸如 How can I understand "
如何自动派生此 GADT 的 Read 实例: {-# LANGUAGE GADTs, StandaloneDeriving #-} data TypeDec a where TypeDecInt
我遇到了我想要的情况 Deal class要注意它DealDetail type反之亦然,我想 DealDetail注意Deal type .将来我想有很多 Deal 的后代和 DealDetails
我是 C# 新手,所以请多多包涵。 好的,所以我在不同的程序集中有两个类需要相互引用: namespace AssemblyA { class A { private B MyB {
简而言之,我已经实现了一个派生自 SynchronizationContext 的类,以便 GUI 应用程序可以轻松地使用在 GUI 线程以外的线程上引发的事件。我非常感谢对我的实现的评论。具体来说,
我正在设计一个小型系统,想知道如何为派生类分配内存的细微差别。 如果我有两个类(class) class foo { public: int a; Foo(): a(0) {}; }; class
我正在尝试编写一个派生 PartialEq 的枚举,其中包含一个手动执行此操作的特征对象。我使用了解决方案 here为了强制 Trait 的实现者编写相等方法。这无法编译: trait Trait {
以下代码可以编译(特别是 MyError 被识别为具有调试特性): use std::str; use std::fmt; #[derive(Debug)] enum MyError where F:
是否有一种简单的方法来注释结构中的字段,以便在派生 PartialEq 特征时忽略它们?例如: #[derive(PartialEq,Eq)] pub struct UndirectedGraph {
我正在编写代码来处理“Foo”类型的对象。 foo 是一种容器,为了提供对其元素的高效和抽象访问,它提供了 Element 类型的嵌套类。 Element 包装对象在容器中的位置。 现在,“Foo”可
假设如下: class child : public parent { public: fun1(parent * obj); //somewhere on the child class
我有几个模板类 template class Transition { public: virtual Cost getCost() = 0; }; template class St
我正在尝试使用自定义 QSortFilterProxyModel . 这是我的标题: #include class QSortFilterProxyModel_NumbersLast : publi
我正在使用 C# 和 mvc3。我在解决方案中添加了一个项目。我想创建一个新 Controller 并让它从我添加的项目中的 Controller 派生。我该怎么做? 最佳答案 在 Visual St
我在 python 中有一个对象,它派生自 QtGui.QGraphicsPixmapItem,具有一些基本属性和方法。在对此对象的引用上调用 deepcopy 后,当我尝试使用该副本时收到一条错误消
由于只能给FixedDocument添加页面,所以我写了一个派生类: public class CustomFixedDocument : FixedDocument { public voi
我在自定义 QMainWindow 时遇到了很大的问题,因为我不知道如何实现以下内容: 在 QMainWindow 文档中,QMainWindow 有一些用于工具栏、停靠小部件、状态栏和其他的特殊区域
我想感受一下QT,决定写一个小的十六进制编辑器。为此,我需要一个允许滚动的小部件。经过一番研究,我发现 QTextEdit 为此目的派生自 QAbstractScrollArea。在阅读 QAbstr
我正在寻找一种可以从已经发生的洗牌过程中派生出 key 的算法。 假设我们有被打乱的字符串“Hello”: "hello" -> "loelh" 现在我想从中导出一个 key k,我可以用它来撤销洗牌
我是一名优秀的程序员,十分优秀!