⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ctprimitivetype.java

📁 Javassist是一个开源的分析、编辑和创建Java字节码的类库。是由东京技术学院的数学和计算机科学系的 Shigeru Chiba 所创建的。它已加入了开放源代码JBoss 应用服务器项目,通过使
💻 JAVA
字号:
/* * Javassist, a Java-bytecode translator toolkit. * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved. * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (the "License"); you may not use this file except in compliance with * the License.  Alternatively, the contents of this file may be used under * the terms of the GNU Lesser General Public License Version 2.1 or later. * * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the * License. */package javassist;/** * An instance of <code>CtPrimitiveType</code> represents a primitive type. * It is obtained from <code>CtClass</code>. */public final class CtPrimitiveType extends CtClass {    private char descriptor;    private String wrapperName;    private String getMethodName;    private String mDescriptor;    private int returnOp;    private int arrayType;    private int dataSize;    CtPrimitiveType(String name, char desc, String wrapper,                    String methodName, String mDesc, int opcode, int atype,                    int size) {        super(name);        descriptor = desc;        wrapperName = wrapper;        getMethodName = methodName;        mDescriptor = mDesc;        returnOp = opcode;        arrayType = atype;        dataSize = size;    }    /**     * Returns <code>true</code> if this object represents a primitive     * Java type: boolean, byte, char, short, int, long, float, double,     * or void.     */    public boolean isPrimitive() { return true; }    /**     * Returns the descriptor representing this type.     * For example, if the type is int, then the descriptor is I.     */    public char getDescriptor() { return descriptor; }    /**     * Returns the name of the wrapper class.     * For example, if the type is int, then the wrapper class is     * <code>java.lang.Integer</code>.     */    public String getWrapperName() { return wrapperName; }    /**     * Returns the name of the method for retrieving the value     * from the wrapper object.     * For example, if the type is int, then the method name is     * <code>intValue</code>.     */    public String getGetMethodName() { return getMethodName; }    /**     * Returns the descriptor of the method for retrieving the value     * from the wrapper object.     * For example, if the type is int, then the method descriptor is     * <code>()I</code>.     */    public String getGetMethodDescriptor() { return mDescriptor; }    /**     * Returns the opcode for returning a value of the type.     * For example, if the type is int, then the returned opcode is     * <code>javassit.bytecode.Opcode.IRETURN</code>.     */    public int getReturnOp() { return returnOp; }    /**     * Returns the array-type code representing the type.     * It is used for the newarray instruction.     * For example, if the type is int, then this method returns     * <code>javassit.bytecode.Opcode.T_INT</code>.     */    public int getArrayType() { return arrayType; }    /**     * Returns the data size of the primitive type.     * If the type is long or double, this method returns 2.     * Otherwise, it returns 1.     */    public int getDataSize() { return dataSize; }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -