All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.xwc1125.common.util.method.MethodUtils Maven / Gradle / Ivy

The newest version!
package com.xwc1125.common.util.method;

/**
 * @Description:
 * @Author: xwc1125
 * @Date: 2019-02-21 10:10
 * @Copyright Copyright@2019
 */
public class MethodUtils {
    /**
     * 

* Title: getMethodName *

*

* Description: 获取当前的函数名称 *

*

* *

* * @return * @author xwc1125 * @date 2015-7-14下午4:12:52 */ public static String getMethodName() { StackTraceElement[] stacktrace = Thread.currentThread().getStackTrace(); StackTraceElement e = stacktrace[2]; String methodName = e.getMethodName(); return methodName; } public static StackTraceElement getMethodPath() { StackTraceElement[] stacktrace = Thread.currentThread().getStackTrace(); StackTraceElement e = stacktrace[2]; return e; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy