0

我正在使用字节码在java中动态生成类,然后加载该类。我在如何做的教程上找到了这段代码。

  private int stringConstant(String s) {
        return constant(CONSTANT_Utf8, s);
    }

    private int classConstant(String s) {
        int classNameIndex = stringConstant(s.replace('.', '/'));
        return constant(CONSTANT_Class, classNameIndex);
    }

    private int constant(Object... data) {
        List<?> dataList = Arrays.asList(data);
        if (poolMap.containsKey(dataList))
            return poolMap.get(dataList);
        poolMap.put(dataList, poolIndex);
        return poolIndex++;
    }

    private void writeConstantPool(DataOutputStream dout) throws IOException {
        dout.writeShort(poolIndex);
        int i = 1;
        for (List<?> data : poolMap.keySet()) {
            assert(poolMap.get(data).equals(i++));
            int tag = (Integer) data.get(0);
            dout.writeByte(tag);          // u1 tag
            switch (tag) {
                case CONSTANT_Utf8:
                    dout.writeUTF((String) data.get(1));
                    break;                // u2 length + u1 bytes[length]
                case CONSTANT_Class:
                    dout.writeShort((Integer) data.get(1));
                    break;                // u2 name_index
                default:
                    throw new AssertionError();
            }
        }
    }

    private final Map<List<?>, Integer> poolMap =
            new LinkedHashMap<List<?>, Integer>();
    private int poolIndex = 1;

我不明白包含列表的地图是如何被使用的,它看起来不像是做这种事情的传统 oop 方式。

4

1 回答 1

0

在您给我们的片段中,地图是一种为您放入其中的每个列表分配唯一索引(从 1 增加)的方法。该索引显然用于assert检查键是否按照插入的顺序检索 - 鉴于地图是LinkedHashMap.

就给定的代码而言, aLinkedHashSet也会这样做。当然我们不知道在哪里constant调用 etc.,也许索引被调用者使用。

从 OO 的角度来看,我没有看到任何反对意见 - 首先,这个代码片段几乎没有 OO。

于 2013-05-29T05:42:20.307 回答