Re: when does a method get compiled?

2001-03-16 Thread Weiqi Gao
On 16 Mar 2001 18:57:57 -0800, noisebrain wrote: > I have a performance problem that would be explained if the > following were true: > > x = new Something() > x.methodcall(); // not compiled yet > x.methodcall(); // second call, compiled now? > y = new i

when does a method get compiled?

2001-03-16 Thread noisebrain
I have a performance problem that would be explained if the following were true: x = new Something() x.methodcall(); // not compiled yet x.methodcall(); // second call, compiled now? y = new int[10];// causes gc, DISCARDS THE COMPILED x ??

Re: JVM

2001-03-16 Thread Alexandre Jose Andrade Leite Viana
See this site, please. Inside the Java 2 Virtual Machine http://www.artima.com/jvm/index.html - Original Message - From: nilesh modi <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 15, 2001 3:07 PM Subject: JVM > Hi, > can anyone tell me from where i can find out th