Slashdot Mirror


User: sweet+reason

sweet+reason's activity in the archive.

Stories
0
Comments
153
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 153

  1. The problem with Java on Java for EGCS · · Score: 1

    java isn't supposed to be C++.
    the whole point of java is "write once, run anywhere".
    compiling to native code does not advance that.
    just-in-time compilation does.

  2. too poor on Add a tilt sensor to your PalmPilot · · Score: 1

    it only measures in two axes, and has no rotational sensors, so even if it had the precision of a real INS, it would be useless for navigation. it can't tell if you turn or climb.

  3. Best argument for Java I've seen in a while on Review:Effective C++ CD-ROM · · Score: 1

    of course, java has its own problems to work around.
    how do you handle 'instantiation is allocation', i.e., having the constructor of a stack-allocated
    object grab a resource, and the destructor deallocate it when it goes out of scope?
    routine in C++, impossible in Java, but highly desirable nonetheless.