- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
(5.3.4)
new-expression:
::opt_new new-placement_opt new-type-id new-initializeropt
::opt_new new-placement_opt ( type-id ) new-initializeropt
Entities created by a new-expression have dynamic storage duration (3.7.4). [ Note: the lifetime of such an entity is not necessarily restricted to the scope in which it is created. — end note ]
我认为以下有 1 个具有自动 存储持续时间的主要对象 (local_object),以及 3 个具有动态 存储持续时间的虚拟类。
struct dummy
{
int a;
};
char local_object[256];
dummy * a = new(&local_object) dummy;
dummy * b = new(&local_object +100) dummy;
dummy * c = new(&local_object +200) dummy;
用户@M.M.认为只有一个对象(local_object),其余的只是指针。这是正确的吗?
(3.7)
The dynamic storage duration is associated with objects created with operator new
最佳答案
在我看来,标准(如 OP 中引用的那样)只能按其读取的方式进行解释,即 operator new 创建动态存储持续时间的对象,即使底层内存是为自动持续时间的对象获取的。
引用以下未定义行为的示例,§3.8 [basic.life] 第 8 段中的标准预期了这种精确场景:
class T { };
struct B {
~B();
};
void h() {
B b;
new (&b) T;
}
该段内容如下:
If a program ends the lifetime of an object of type T with static (3.7.1), thread (3.7.2), or automatic (3.7.3) storage duration and if T has a non-trivial destructor, the program must ensure that an object of the original type occupies that same storage location when the implicit destructor call takes place; otherwise the behavior of the program is undefined.
在示例中,程序通过重用其存储“结束了对象 b
的生命周期”,如同一部分第 4 段所提供的:(强调已添加)。
A program may end the lifetime of any object by reusing the storage which the object occupies or by explicitly calling the destructor for an object of a class type with a non-trivial destructor.
在示例代码中,b
的析构函数未被调用,但这是可以接受的,因为第 4 段明确允许不调用非平凡的析构函数:
For an object of a class type with a non-trivial destructor, the program is not required to call the destructor explicitly before the storage which the object occupies is reused or released;
只要程序准备好承受未调用析构函数的后果。
但回到第 8 段,b
的生命周期已经结束,并且存储已被重用以创建类型为 T
的对象。该对象具有动态存储持续时间,这意味着它的析构函数不会被隐式调用。如上所述,也不必显式调用析构函数,只要程序不需要析构函数可能执行的任何副作用即可。
尽管 b
的生命周期已经结束,但 b
具有自动存储持续时间这一事实意味着当控制流离开其作用域时,其析构函数将被隐式调用.在生命周期结束的对象上调用析构函数是禁止使用生命周期结束的对象的特定情况,根据 §3.8 的第 6 段,它禁止调用生命周期已经结束的对象的非静态成员函数结束但其存储尚未被重用或释放。
因此,示例程序的行为是未定义的。
但是本节的第 7 段提供了一种机制,可以让程序通过在同一位置重新创建同一类型的不同对象来避免未定义的行为:
If, after the lifetime of an object has ended and before the storage which the object occupied is reused or released, a new object is created at the storage location which the original object occupied, a pointer that pointed to the original object, a reference that referred to the original object, or the name of the original object will automatically refer to the new object and, once the lifetime of the new object has started, can be used to manipulate the new object, if:
(7.1) — the storage for the new object exactly overlays the storage location which the original object occupied, and
(7.2) — the new object is of the same type as the original object (ignoring the top-level cv-qualifiers), and
(7.3) — the type of the original object is not const-qualified, and, if a class type, does not contain any non-static data member whose type is const-qualified or a reference type, and
(7.4) — the original object was a most derived object (1.8) of type T and the new object is a most derived object of type T (that is, they are not base class subobjects).
因此,根据我的解释,以下代码段将定义行为:
class T { };
struct B {
~B();
};
void h() {
B b;
new (&b) T;
new (&b) B; /* recreate a B so that it can be destructed */
}
简而言之,该标准考虑了使用分配给自动存储持续时间对象的内存创建动态存储持续时间对象的可能性,并为执行此操作的明确定义的程序提供了一组限制和要求,从而避免在生命周期已结束的对象上执行隐式析构函数的后果,方法是重用其存储空间。
关于c++ - 使用 placement new 创建的对象是否具有动态存储持续时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35389789/
我的一位教授给了我们一些考试练习题,其中一个问题类似于下面(伪代码): a.setColor(blue); b.setColor(red); a = b; b.setColor(purple); b
我似乎经常使用这个测试 if( object && object !== "null" && object !== "undefined" ){ doSomething(); } 在对象上,我
C# Object/object 是值类型还是引用类型? 我检查过它们可以保留引用,但是这个引用不能用于更改对象。 using System; class MyClass { public s
我在通过 AJAX 发送 json 时遇到问题。 var data = [{"name": "Will", "surname": "Smith", "age": "40"},{"name": "Wil
当我尝试访问我的 View 中的对象 {{result}} 时(我从 Express js 服务器发送该对象),它只显示 [object][object]有谁知道如何获取 JSON 格式的值吗? 这是
我有不同类型的数据(可能是字符串、整数......)。这是一个简单的例子: public static void main(String[] args) { before("one"); }
嗨,我是 json 和 javascript 的新手。 我在这个网站找到了使用json数据作为表格的方法。 我很好奇为什么当我尝试使用 json 数据作为表时,我得到 [Object,Object]
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
我听别人说 null == object 比 object == null check 例如: void m1(Object obj ) { if(null == obj) // Is thi
Match 对象 提供了对正则表达式匹配的只读属性的访问。 说明 Match 对象只能通过 RegExp 对象的 Execute 方法来创建,该方法实际上返回了 Match 对象的集合。所有的
Class 对象 使用 Class 语句创建的对象。提供了对类的各种事件的访问。 说明 不允许显式地将一个变量声明为 Class 类型。在 VBScript 的上下文中,“类对象”一词指的是用
Folder 对象 提供对文件夹所有属性的访问。 说明 以下代码举例说明如何获得 Folder 对象并查看它的属性: Function ShowDateCreated(f
File 对象 提供对文件的所有属性的访问。 说明 以下代码举例说明如何获得一个 File 对象并查看它的属性: Function ShowDateCreated(fil
Drive 对象 提供对磁盘驱动器或网络共享的属性的访问。 说明 以下代码举例说明如何使用 Drive 对象访问驱动器的属性: Function ShowFreeSpac
FileSystemObject 对象 提供对计算机文件系统的访问。 说明 以下代码举例说明如何使用 FileSystemObject 对象返回一个 TextStream 对象,此对象可以被读
我是 javascript OOP 的新手,我认为这是一个相对基本的问题,但我无法通过搜索网络找到任何帮助。我是否遗漏了什么,或者我只是以错误的方式解决了这个问题? 这是我的示例代码: functio
我可以很容易地创造出很多不同的对象。例如像这样: var myObject = { myFunction: function () { return ""; } };
function Person(fname, lname) { this.fname = fname, this.lname = lname, this.getName = function()
任何人都可以向我解释为什么下面的代码给出 (object, Object) 吗? (console.log(dope) 给出了它应该的内容,但在 JSON.stringify 和 JSON.parse
我正在尝试完成散点图 exercise来自免费代码营。然而,我现在只自己学习了 d3 几个小时,在遵循 lynda.com 的教程后,我一直在尝试确定如何在工具提示中显示特定数据。 This code
我是一名优秀的程序员,十分优秀!