Name: rmT116609 Date: 11/05/2003
FULL PRODUCT VERSION :
java version "1.4.2_02"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_02-b03)
Java HotSpot(TM) Client VM (build 1.4.2_02-b03, mixed mode)
ADDITIONAL OS VERSION INFORMATION :
Microsoft Windows 2000 [Version 5.00.2195]
A DESCRIPTION OF THE PROBLEM :
For methods that have multiple arguments of type byte[], javap only shows the first byte[] argument. (I don't know whether this also happens for other array types.)
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Use javap to show the method signatures of a class which has some methods with multiple byte[] arguments.
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
> javac Test.java
> javap -private Test
Compiled from "Test.java"
public class Test extends java.lang.Object{
public Test();
public static void main(java.lang.String[]);
private void alpha(byte[],int);
private void bravo(byte[],byte[],int,int);
private void charlie(byte[],byte[],byte[],int,int,int);
}
ACTUAL -
> javac Test.java
> javap -private Test
Compiled from "Test.java"
public class Test extends java.lang.Object{
public Test();
public static void main(java.lang.String[]);
private void alpha(byte[],int);
private void bravo(byte[],int,int);
private void charlie(byte[],int,int,int);
}
The signatures of bravo() and charlie() are wrong; it doesn't show all the byte[] arguments.
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
public class Test
{
public static void main(String args[])
{
}
private void alpha(byte[] one, int two){};
private void bravo(byte[] one, byte[] two, int three, int four){};
private void charlie(byte[] one, byte[] two, byte[] three, int four, int five, int six){};
}
---------- END SOURCE ----------
(Incident Review ID: 223772)
======================================================================
FULL PRODUCT VERSION :
java version "1.4.2_02"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_02-b03)
Java HotSpot(TM) Client VM (build 1.4.2_02-b03, mixed mode)
ADDITIONAL OS VERSION INFORMATION :
Microsoft Windows 2000 [Version 5.00.2195]
A DESCRIPTION OF THE PROBLEM :
For methods that have multiple arguments of type byte[], javap only shows the first byte[] argument. (I don't know whether this also happens for other array types.)
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Use javap to show the method signatures of a class which has some methods with multiple byte[] arguments.
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
> javac Test.java
> javap -private Test
Compiled from "Test.java"
public class Test extends java.lang.Object{
public Test();
public static void main(java.lang.String[]);
private void alpha(byte[],int);
private void bravo(byte[],byte[],int,int);
private void charlie(byte[],byte[],byte[],int,int,int);
}
ACTUAL -
> javac Test.java
> javap -private Test
Compiled from "Test.java"
public class Test extends java.lang.Object{
public Test();
public static void main(java.lang.String[]);
private void alpha(byte[],int);
private void bravo(byte[],int,int);
private void charlie(byte[],int,int,int);
}
The signatures of bravo() and charlie() are wrong; it doesn't show all the byte[] arguments.
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
public class Test
{
public static void main(String args[])
{
}
private void alpha(byte[] one, int two){};
private void bravo(byte[] one, byte[] two, int three, int four){};
private void charlie(byte[] one, byte[] two, byte[] three, int four, int five, int six){};
}
---------- END SOURCE ----------
(Incident Review ID: 223772)
======================================================================
- relates to
-
JDK-6205502 javap prints certain methods' signatures incorrectly
-
- Resolved
-