English 中文(简体)
如何将T*的副本放在某个地址?
原标题:How to place a copy of T* at a given address?
  • 时间:2011-11-23 00:01:08
  •  标签:
  • c++

审议一个类型的<代码>T和一个点至T,T

是否有办法复制<代码>。 T* ,at a given address x, without using memcpy ( and in a portable way?

Edit:

Just to be clear, I don t want to construct T at address x. I want to copy the value of the pointer to T, T*, at address x, as in

char* p = new char[s];
memcpy(&p[0], t, sizeof(T*)); // t is T*
问题回答

www.un.org/Depts/DGACM/index_spanish.htm 如果你想在具体地址上构造一个物体,你将重新定位:

#include <new>

T oldT = /* .. */;
T* newT = new (x) T(oldT); // copy-constructed at address x

It s just like new T(), except you specify the buffer. (So take care that it s aligned and lives long enough.)


If you want to copy a value pointed to by a pointer, just dereference the pointer:

T* x = /* .. */;
T copyT = *x; // dereference x, make copy

在这两种情况下,将<条码>改为>。 U或U*等。

页: 1 你们要求的是:

void **address = ...; // address points to a location which can store a void*
T *t = ...;
// note T* and void* are the same size 
// now any of these three should work:
static_cast<T*&>(*address) = t;
*reinterpret_cast<T**>(address) = t;
void *t_addr = t;
*address = t_addr;

我以前从未使用过这个词,但我认为,安排新职位可能有助于解决你的问题。

http://www.parashift.com/c++-faq-lite/dtors.html#faq-11.10

T *& newVal = new (x) T**(oldVal);
void* X;
typeT* T;

X=x;
* (typeT*) X = *T;

This should be portable. Note however that enough space must appropriately allocated before the copy (=) operation takes place.





相关问题
Undefined reference

I m getting this linker error. I know a way around it, but it s bugging me because another part of the project s linking fine and it s designed almost identically. First, I have namespace LCD. Then I ...

C++ Equivalent of Tidy

Is there an equivalent to tidy for HTML code for C++? I have searched on the internet, but I find nothing but C++ wrappers for tidy, etc... I think the keyword tidy is what has me hung up. I am ...

Template Classes in C++ ... a required skill set?

I m new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly?

Print possible strings created from a Number

Given a 10 digit Telephone Number, we have to print all possible strings created from that. The mapping of the numbers is the one as exactly on a phone s keypad. i.e. for 1,0-> No Letter for 2->...

typedef ing STL wstring

Why is it when i do the following i get errors when relating to with wchar_t? namespace Foo { typedef std::wstring String; } Now i declare all my strings as Foo::String through out the program, ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

Window iconification status via Xlib

Is it possible to check with the means of pure X11/Xlib only whether the given window is iconified/minimized, and, if it is, how?

热门标签