Hi William,
William J Rust <[EMAIL PROTECTED]> wrote:
>
> is there a disassembler for byte code (not refactoring)
> that produces symbolic byte code?
try javap -c, it is included in the JDK.
Cheers
Jürgen
--
Jürgen Stuber <[EMAIL PROTECTED]>
http://www.jstuber.net/
gnupg key fingerprint = 27
ults match.
> Date: Thu, 13 Apr 2006 09:15:08 +0200
> From: [EMAIL PROTECTED]
> To: [EMAIL PROTECTED]
> CC: lejos-discussion@lists.sourceforge.net
> Subject: Re: [Lejos-discussion] Arithmetic Problem
>
> Hi James,
>
>
It's strange though. For every other number I've tried besides 10.25, the results match.
> Date: Thu, 13 Apr 2006 09:15:08 +0200> From: [EMAIL PROTECTED]> To: [EMAIL PROTECTED]> CC: lejos-discussion@lists.sourceforge.net> Subject: Re: [Lejos-discussion] Arithmetic Prob
Hi James,
James Park <[EMAIL PROTECTED]> wrote:
>
> In the following program, the LCD will print 4999 first
> (incorrect), and then 5031 second (correct). I'm not
> missing something obvious am I?
note that double arithmetic is not implemented,
I think float arithmetic is done instead.
So the con
In the following program, the LCD will print 4999 first (incorrect), and then 5031 second (correct). I'm not missing something obvious am I?
import josx.platform.rcx.*;
public class Program {
public static void main(String[] args) { present((int)(convert(10.25) * 1)); presen