你如何找到调用者函数? [复制]
Posted
技术标签:
【中文标题】你如何找到调用者函数? [复制]【英文标题】:How do you find the caller function? [duplicate] 【发布时间】:2010-09-21 18:41:54 【问题描述】:作为"How can I find the method that called the current method?"的完全相同的副本关闭
this 可以用 c# 吗?
void main()
Hello();
void Hello()
// how do you find out the caller is function 'main'?
【问题讨论】:
***.com/questions/171970/… ? 这个问题与http://***.com/questions/171970/how-can-i-find-the-method-that-called-the-current-method重复 【参考方案1】:来自here:
System.Diagnostics.StackTrace st = new System.Diagnostics.StackTrace(1);
System.Diagnostics.StackFrame sf = st.GetFrame(0);
string msg = sf.GetMethod().DeclaringType.FullName + "." +
sf.GetMethod().Name;
MessageBox.Show( msg );
但也有一个说明,这不能与多线程一起工作。
【讨论】:
非常感谢您提到这句话。我想知道为什么当我尝试从新线程中获取方法名称时得到NullReferenceException
。【参考方案2】:
Console.WriteLine(new StackFrame(1).GetMethod().Name);
但是,这并不可靠,尤其是优化(例如 JIT 内联)可能会与感知的堆栈帧发生冲突。
【讨论】:
嗨,马克。由于 JIT,是否有可能在运行时更改方法名称? @Joe 当然可能无法得到您预期的结果,这可能是由于内联,或者是由于编译器生成的匿名方法和迭代器块等方法.除非您使用混淆器,否则我不希望它突然被完全重命名。以上是关于你如何找到调用者函数? [复制]的主要内容,如果未能解决你的问题,请参考以下文章