我有以下java代码片段
while (condition1){
switch (someinteger){
case 1:
if(condition2) continue;
// other stuff here
break;
// other cases here
}
}
一切都很好。当我生成一个类文件,然后使用免费工具(JD-gui)对其进行反编译时,我得到了以下代码。
while (condition1){
switch (someinteger){
出于好奇,我刚刚使用 Decompiler以及使用CAVAJ ( Java为1.7 )解压缩了下面的代码,这里是正常的源代码:
byte a = 10;
a = (byte) (a +1);
byte b = 10;
b = b++;
byte c = 10;
c +=c;
System.out.printf("a=%d \t b=%d \t c=%d\n",a,b,c);
将输出显示为:a=11 b=10 c=20。
这是解压缩的一个:
byte a = 10;
a++;
byte b