public class CostTimeVisitor
extends org.objectweb.asm.ClassVisitor
Created by lijiankun03 on 2018/7/29.
| 构造器和说明 |
|---|
CostTimeVisitor(org.objectweb.asm.ClassVisitor classVisitor) |
| 限定符和类型 | 方法和说明 |
|---|---|
org.objectweb.asm.MethodVisitor |
visitMethod(int access,
java.lang.String name,
java.lang.String desc,
java.lang.String signature,
java.lang.String[] exceptions)
Visits a method of the class.
|
public org.objectweb.asm.MethodVisitor visitMethod(int access,
java.lang.String name,
java.lang.String desc,
java.lang.String signature,
java.lang.String[] exceptions)
org.objectweb.asm.ClassVisitorMethodVisitor instance (or null) each time it is called,
i.e., it should not return a previously returned visitor.visitMethod 在类中 org.objectweb.asm.ClassVisitoraccess - the method's access flags (see Opcodes). This
parameter also indicates if the method is synthetic and/or
deprecated.name - the method's name.desc - the method's descriptor (see Type).signature - the method's signature. May be null if the method
parameters, return type and exceptions do not use generic
types.exceptions - the internal names of the method's exception classes (see
getInternalName). May be
null.