English 中文(简体)
能否取代任何地方的全球“新(新)”?
原标题:Is it possible to replace the global "operator new()" everywhere?

我愿取代全球<代码>operator new()和operlet(<>/code>(加上所有变量),以便进行一些记忆管理trick。 我在申请中使用海关操作员(包括我自己的DLLs和第三方DLLs的代码)时,都想到所有法典。 我阅读了一些内容,大意是,联系人将选择连接时所看到的第一个定义(例如,如果包含你的习惯<代码>的新设计器()的图书馆首先连接起来,它将“连接”与投影机的联系。 是否有办法保证这种情况发生? 这方面的规则是什么,因为这确实是一个多面界定的象征(例如, 避免* 操作者新(大小)在全球名称空间有两种定义)?

哪些第三方DLLs可能与难民审查法庭有固定联系? 即使它们与难民审查法庭有动态联系,我还是能够让它们与my<>>>>/m>operator new(?

最佳回答

C++标准明确允许你撰写自己的全球运营商新版,删除(和阵列变量)。 联系人必须使其发挥作用,尽管究竟是怎样由执行者来做(例如,像弱小的外在者这样的事情,如果而且只有在已经存在的情况下,才有助于提供一些东西)。

直到DLLs为止,它会trick:一个与DLLL有固定联系的固定电话公司显然在没有大量额外工作的情况下使用你的代码。 法定链接是指它已经拥有一部图书馆编码复制件,并抄录为DLL,而使用该编码的DLL中的任何代码已经编码。 为了达到这一目的,你必须指出,新法典在《刑法》中的位置,并动态地发出所有要求其改称你的法典。

如果DL与标准图书馆有动态联系,它就只能稍加容易——进口表仍然编码了DL的名称,并在DLL提供所需要的功能。 这可以围绕(例如,Microsoft s Detours Library),但有些是非属人性的(但肯定比DL将标准图书馆固定地联系起来时容易)。

问题回答

EDIT:在重新阅读这一问题后,我认识到,你的重点是第三方组成部分。 因此,在这种情况下,答案是没有的。 所涉及的变量太多。


(在你自己的法典中删除“新”) 答案是肯定的。 这是在进行其自身记忆管理的系统中的共同trick。 各位可能已经猜测,这是获得权利的一件非常trick的事情,如果你不小心,很容易在你面前被打上,但肯定是站不住脚的,并且用大量软件加以使用。 (例如,我回顾在Doom 3 SDK中通过一些守则读写)

至于替换第3党的DLLLL,这不会发生(至少不会安全发生)。 你们怎么知道他们甚至使用新的和删除? 更不用说,他们可能自行选择这种技术,依靠其某种副作用来适当运作。 即使你现在开始工作,你也知道,这一组成部分的某些未来版本是如何打破的? 感到自己可以缅怀你们的所有希望,但为了你们和你们的使用者的幸福,请不要试图用微调来其他双亲的记忆。





相关问题
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?