📄 bcmethoddescriptor.java
字号:
/* Derby - Class org.apache.derby.impl.services.bytecode.BCMethodDescriptor Copyright 1999, 2004 The Apache Software Foundation or its licensors, as applicable. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */package org.apache.derby.impl.services.bytecode;import org.apache.derby.iapi.services.classfile.VMDescriptor;/** A method descriptor. Ie. something that describes the type of a method, parameter types and return types. It is not an instance of a method. <BR> This has no generated class specific state. */class BCMethodDescriptor { static final String[] EMPTY = new String[0]; private final String[] vmParameterTypes; private final String vmReturnType; private final String vmDescriptor; BCMethodDescriptor(String[] vmParameterTypes, String vmReturnType, BCJava factory) { this.vmParameterTypes = vmParameterTypes; this.vmReturnType = vmReturnType; vmDescriptor = factory.vmType(this); }/* static String get(Expression[] vmParameters, String vmReturnType, BCJava factory) { int count = vmParameters.length; String[] vmParameterTypes; if (count == 0) { vmParameterTypes = BCMethodDescriptor.EMPTY; } else { vmParameterTypes = new String[count]; for (int i =0; i < count; i++) { vmParameterTypes[i] = ((BCExpr) vmParameters[i]).vmType(); } } return new BCMethodDescriptor(vmParameterTypes, vmReturnType, factory).toString(); }*/ static String get(String[] vmParameterTypes, String vmReturnType, BCJava factory) { return new BCMethodDescriptor(vmParameterTypes, vmReturnType, factory).toString(); } /** * builds the JVM method descriptor for this method as * defined in JVM Spec 4.3.3, Method Descriptors. */ String buildMethodDescriptor() { int paramCount = vmParameterTypes.length; int approxLength = (30 * (paramCount + 1)); StringBuffer methDesc = new StringBuffer(approxLength); methDesc.append(VMDescriptor.C_METHOD); for (int i = 0; i < paramCount; i++) { methDesc.append(vmParameterTypes[i]); } methDesc.append(VMDescriptor.C_ENDMETHOD); methDesc.append(vmReturnType); return methDesc.toString(); } public String toString() { return vmDescriptor; } public int hashCode() { return vmParameterTypes.length | (vmReturnType.hashCode() & 0xFFFFFF00); } public boolean equals(Object other) { if (!(other instanceof BCMethodDescriptor)) return false; BCMethodDescriptor o = (BCMethodDescriptor) other; if (o.vmParameterTypes.length != vmParameterTypes.length) return false; for (int i = 0; i < vmParameterTypes.length; i++) { if (!vmParameterTypes[i].equals(o.vmParameterTypes[i])) return false; } return vmReturnType.equals(o.vmReturnType); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -