本文介绍了是否可能强制函数不内联?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想强制一个函数不被编译为内联函数,即使它很简单。我认为这是有用的调试目的。
I want to force a little function not to be compiled as inline function even if it's very simple. I think this is useful for debug purpose. Is there any keyword to do this?
推荐答案
在Visual Studio 2010中, __ declspec(noinline)
告诉编译器不要内联一个特定的成员函数,例如:
In Visual Studio 2010, __declspec(noinline)
tells the compiler to never inline a particular member function, for instance:
class X {
__declspec(noinline) int member_func() {
return 0;
}
};
编辑:此外,使用 / clr
,具有安全属性的函数不会被内联(再次,这是VS 2010具体的)。
edit: Additionally, when compiling with /clr
, functions with security attributes never get inlined (again, this is specific to VS 2010).
我不认为这将证明在调试时, 。
I don't think it will prove at all useful at debugging, though.
这篇关于是否可能强制函数不内联?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!