📄 arraytype.java
字号:
// Copyright (c) 1997 Per M.A. Bothner.// This is free software; for terms and warranty disclaimer see ./COPYING.package gnu.bytecodecvssnap;public class ArrayType extends ObjectType{ public Type elements; public ArrayType (Type elements) { this(elements, elements.getName() + "[]"); } ArrayType (Type elements, String name) { this_name = name; setSignature("[" + elements.getSignature()); this.elements = elements; } public Type getImplementationType() { Type eltype = elements.getImplementationType(); return elements == eltype ? this : make(eltype); } /** Name assumed to end with "[]". */ static ArrayType make(String name) { Type elements = Type.getType(name.substring(0, name.length()-2)); ArrayType array_type = elements.array_type; if (array_type == null) { array_type = new ArrayType(elements, name); elements.array_type = array_type; } return array_type; } /** Find or create an ArrayType for the specified element type. */ public static ArrayType make(Type elements) { ArrayType array_type = elements.array_type; if (array_type == null) { array_type = new ArrayType(elements, elements.getName() + "[]"); elements.array_type = array_type; } return array_type; } public Type getComponentType() { return elements; } public String getInternalName() { return getSignature(); } public int compare(Type other) { if (other == nullType) return 1; if (other instanceof ArrayType) return elements.compare(((ArrayType) other).elements); else if (other.getName().equals("java.lang.Object") || other == tostring_type) return -1; else return -3; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -