
bbrainz |
Yes, there is no inline functions in Java.
That means you can not make your own inline methods in java but the JVM can automatically inline appropriate and frequently used methods as it determines what or which would could save time.
Inline functions present a problem for debuggers and profilers, because the function is expanded at the point of call and loses its identity. A compiler will typically have some option available to disable inlining.
Inlining tends to blow up the size of code, because the function is expanded at each point of call.
Thank you.
Friday, 28th August 2009
| Votes: |
|
26 |
|
13 |
|