- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
这段代码肯定是病式的,因为 Foo
是在实例化点之后特化的:
template <typename T>
struct Foo {
int a;
};
Foo<int> x = { 42 };
template <>
struct Foo<int> {
const char *a;
};
Foo<int> x = { "bar" };
由于 standard 的一部分,格式不正确我强调:
A specialization for a function template, a member function template, or of a member function or static data member of a class template may have multiple points of instantiations within a translation unit, and in addition to the points of instantiation described above, for any such specialization that has a point of instantiation within the translation unit, the end of the translation unit is also considered a point of instantiation. A specialization for a class template has at most one point of instantiation within a translation unit. A specialization for any template may have points of instantiation in multiple translation units. If two different points of instantiation give a template specialization different meanings according to the one-definition rule, the program is ill-formed, no diagnostic required.
现在,这段代码是不是格式错误?
struct A;
template <typename> class Foo { };
Foo<A> foo; // note A is incomplete here
struct A {};
如果 Foo
像这样声明,畸形会改变吗?
struct A;
template <typename T>
struct Foo {
Foo() {
new T;
}
};
Foo<A> foo; // note A is incomplete here
struct A {};
我问这个问题,因为这个question下的讨论.
请注意,这不是重复的。那个问题是关于代码编译的原因,这个问题是关于它是否格式错误。它们不同,因为格式错误的程序不一定是非编译程序。
请注意,使用 clang 和 gcc,我的 new T
示例可以编译,而这个示例(T
作为成员)不会:
struct A;
template <typename T>
struct Foo {
T t;
};
Foo<A> foo; // note A is incomplete here
struct A {};
也许两者都是错误的,并且仅针对最后一种情况给出诊断?
最佳答案
struct A;
template <typename> class Foo { };
Foo<A> foo; // note A is incomplete here
struct A {};
Foo<A>
仅取决于 A
的名称不是它的完整类型。
所以这是合式的;然而,这种东西仍然可以破坏(变得格式错误),但可以在您测试的每个编译器中编译。
首先,我们窃取is_complete .然后我们这样做:
struct A;
template <class T> class Foo {
enum{ value = is_complete<T>::value };
};
Foo<A> foo; // note A is incomplete here
struct A {};
尽管如此,我们还好:
[...] for any such specialization that has a point of instantiation within the translation unit, the end of the translation unit is also considered a point of instantiation. [...]
因为该条款不适用于模板类。这里,模板类的唯一实例化就可以了。
现在,如果在另一个文件中你有:
struct A {};
Foo<A> foo2;
你的程序格式不正确。
但是,在单文件的情况下:
struct A;
template <class T> class Foo {
enum{ value = is_complete<T>::value };
};
Foo<A> foo; // note A is incomplete here
struct A {};
Foo<A> foo2; // ill-formed
你的代码没问题。 Foo<A>
有一个实例化点在给定的编译单元中;第二个是对第一个实例化点的引用。
一个和两个文件版本几乎肯定会在 C++ 编译器中编译而没有错误或警告。
一些编译器内存模板实例化,甚至从一个编译单元到另一个编译单元; Foo<A>
会有一个 ::value
那是 false
即使在 foo2
之后已创建(带有完整的 A
)。其他人会有两个不同的Foo<A>
每个编译单元中的 s;它的方法将被标记为内联(并且是不同的),类的大小可能不一致,并且您会遇到一连串错误的程序问题。
最后,请注意 std
中的许多类型要求它们的模板参数在旧版本的 C++ 中是完整的(包括 c++11:“17.6.4.8 其他函数 (...) 2. 在以下情况下效果未定义:(...) 特别是 - 如果一个不完整类型 (3.9) 在实例化模板组件时用作模板参数,除非特别允许该组件”——从 boost 不完整容器文档中复制)。具体来说,std::vector<T>
过去需要 T
完成。
通过 c++17有 changed for std::vector
:
[vector.overview]/3
An incomplete type T may be used when instantiating vector if the allocator satisfies the allocator completeness requirements 17.6.3.5.1. T shall be complete before any member of the resulting specialization of vector is referenced.
现在,甚至在 c++17 之前, 大多数实现 std::vector<T>
不完整的 T
没问题直到你尝试使用一个方法(包括它的许多构造函数或析构函数),但标准声明 T
必须完整。
这实际上妨碍了一些无用的代码,例如具有返回其自身类型的 vector 的函数类型1。 Boost有一个库可以解决这个问题。
template <typename T>
struct Foo {
Foo() {
new T;
}
};
Foo<T>::Foo()
的主体仅在“被调用时”实例化。所以T
没有完成直到Foo::Foo()
才产生影响。被称为。
Foo<A> foo;
^^ 将无法编译不完整的 A
.
using foo_t = Foo<A>;
^^ 将编译,不会导致任何问题。
using foo_t = Foo<A>;
struct A {};
foo_t foo;
也没有问题。 foo_t::foo_t
的正文当我们尝试构建 foo_t
时被实例化, 并且所有定义都匹配。
1 能说说状态机转换函数吗?
关于c++ - 如果类型是在之后定义的,则实例化具有不完整类型的类模板是否格式错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52185464/
我是 python 的新手。我试图找到我的文本的频率分布。这是代码, import nltk nltk.download() import os os.getcwd() text_file=open(
我对安卓 fragment 感到困惑。我知道内存 fragment 但无法理解什么是 android fragment 问题。虽然我发现很多定义,比如 Android fragmentation re
尝试对 WordPress 进行 dockerise 我发现了这个场景: 2个数据卷容器,一个用于数据库(bbdd),另一个用于wordpress文件(wordpress): sudo docker
这个问题已经有答案了: From the server is there a way to know that my page is being loaded in an Iframe (1 个回答)
我正在玩小型服务器,试图对运行在其上的服务进行docker化。为简化起见,假设我必须主要处理:Wordpress和另一项服务。 在Docker集线器上有许多用于Wordpress的图像,但是它们似乎都
我想要发生的是,当帐户成功创建后,提交的表单应该消失,并且应该出现一条消息(取决于注册的状态)。 如果成功,他们应该会看到一个简单的“谢谢。请检查您的电子邮件。” 如果不是,那么他们应该会看到一条适当
就是这样,我需要为客户添加一个唯一标识符。通过 strip 元数据。这就是我现在完全构建它的方式,但是我只有最后一部分告诉我用户购买了哪个包。 我试着看这里: Plans to stripe 代码在这
我有一个类将执行一些复杂的操作,涉及像这样的一些计算: public class ComplexAction { public void someAction(String parameter
这个问题已经有答案了: maven add a local classes directory to module's classpath (1 个回答) 已关闭10 年前。 我有一些不应更改的旧 E
我使用 fragment 已经有一段时间了,但我经常遇到一个让我烦恼的问题。 fragment 有时会相互吸引。现在,我设法为此隔离了一个用例,它是这样的: Add fragment A(也使用 ad
我的 html 中有一个 ol 列表,上面有行条纹。看起来行条纹是从数字后面开始的。有没有办法让行条纹从数字开始? 我已经包含了正在发生的事情的片段 h4:nth-child(even) {
如何仅使用 css 将附加图像 html 化? 如果用纯 css 做不到,那我怎么能至少用一个图像来做 最佳答案 这不是真正的问题,而是您希望我们为您编写代码。我建议您搜索“css breadcrum
以下是 Joshua 的 Effective Java 的摘录: If you do synchronize your class internally, you can use various te
在这里工作时,我们有一个框向业务合作伙伴提供 XML 提要。对我们的提要的请求是通过指定查询字符串参数和值来定制的。其中一些参数是必需的,但很多不是。 例如,我们要求所有请求都指定一个 GUID 来标
我有 3 个缓冲区,其中包含在 32 位处理器上运行的 R、G、B 位数据。 我需要按以下方式组合三个字节: R[0] = 0b r1r2r3r4r5r6r7r8 G[0] = 0b g1g2g3g4
我最近发现了关于如何使用 History.js、jQuery 和 ScrollTo 通过 HTML5 History API 对网站进行 Ajax 化的要点:https://github.com/br
我们有一个 Spring Boot 应用程序,由于集成需要,它变得越来越复杂——比如在你这样做之后发送一封电子邮件,或者在你之后广播一条 jms 消息等等。在寻找一些更高级别的抽象时,我遇到了 apa
我正在尝试首次实施Google Pay。我面临如何指定gateway和gatewayMarchantId的挑战。 我所拥有的是google console帐户,不知道在哪里可以找到此信息。 priva
昨天下午 3 点左右,我为两个想要从一个 Azure 帐户转移到另一个帐户的网站设置了 awverify 记录。到当天结束时,Azure 仍然不允许我添加域,所以我赌了一把,将域和 www 子域重新指
我正在使用terms facet在elasticsearch服务器中获取顶级terms。现在,我的标签"indian-government"不被视为一个标签。将其视为"indian" "governm
我是一名优秀的程序员,十分优秀!