gpt4 book ai didi

java - 更新旧代码,但现在有前向声明错误

转载 作者:行者123 更新时间:2023-12-01 09:38:23 24 4
gpt4 key购买 nike

我对Java不是很精通,我才刚刚入门。然而,需要更新别人的工作以供我自己使用(当然是私下的)。一旦我开始更新插件(这是专门针对 Spigot Minecraft 服务器的),我遇到了大量草率的代码和很多很多错误。这个问题让我这个 Java 新手感到困惑。

该代码用于 Base64 解码器。

private static final char[] map1 = new char[64];

static { int i = 0;
for (char c = 'A'; c <= 'Z'; c = (char)(c + '\001')) map1[(i++)] = c;
for (char c = 'a'; c <= 'z'; c = (char)(c + '\001')) map1[(i++)] = c;
for (char c = '0'; c <= '9'; c = (char)(c + '\001')) map1[(i++)] = c;
map1[(i++)] = '+';map1[(i++)] = '/';

map2 = new byte['<nonunicodechar>']; // It appears as a square in IntelliJ, assuming it's not unicode (see below)

for (int i = 0; i < map2.length; i++) map2[i] = -1;
for (int i = 0; i < 64; i++) { map2[map1[i]] = ((byte)i);
}
}

public static final byte[] map2;

引发的问题是map2是非法的前向引用,并且'i'已经在范围中定义。

byte['']; 如下所示

Code

最佳答案

如果我没记错的话,像这样的静态构造函数只会将其自身插入到正常类初始化的顺序中。因此,在您的情况下,声明了map1,然后运行静态代码块,然后声明map。

尝试将map2的声明移到静态代码块上方。

关于java - 更新旧代码,但现在有前向声明错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38650521/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com