home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
kaffe-0.5p4-src.tgz
/
tar.out
/
contrib
/
kaffe
/
test
/
exceptions
/
StackDump.java
< prev
next >
Wrap
Text File
|
1996-09-28
|
277b
|
17 lines
public class StackDump {
StackDump()
{ }
public void f(int i)
{
StackDump s;
s = (i == 0) ? null : this;
s.f(i - 1);
}
public static void main(String[] args)
{
StackDump s = new StackDump();
s.f(10);
}
}