Name: mc57594 Date: 07/01/99
Consider the following class:
------
/**
* Test.java
*
*
* Created: Mon Jun 21 17:43:53 1999
*
* @author Amit Kumar
* @version
*/
public class Test {
public Test() {
}
public static void main(String[] args) {
Test test = new Test();
test.start();
}
public static void start() {
int i = 0;
for (;;) {
i++;
System.out.println(i);
try {
if ((i % 10) == 0) { System.in.read(); }
} catch (java.io.IOException ex) {
System.exit(1);
}
}
}
} // Test
-----
here is the session:
-----
asj(21): jdb Test
Initializing jdb...
0xb0:class(Test)
> run
run Test
running ...
main[1] 1
2
3
4
5
6
7
8
9
10
----
here, the output stops, the program is waiting for user input.
however, on pressing enter, here is the output:
----
main[1]
-----
here is the output of java -version etc:
-----
asj(24): java -version
java version "1.2.2"
Classic VM (build JDK-1.2.2-V, green threads, sunwjit)
asj(25): java -fullversion
java full version "JDK-1.2.2-V"
(Review ID: 84697)
======================================================================
- duplicates
-
JDK-4075010 STD: sun.tools.debug RemoteDebugger() constructor
-
- Closed
-