質問

The question says it all. I was taking a look at Can a recursive function be inline? so trying to correlate that to Java.

役に立ちましたか?

解決

Sort of. Tail-recursive methods can be fairly readily converted to loops. Otherwise, the JITC may inline several calls as a sort of "unrolling".

Depends on the phase of the moon and the day of the week, though -- lots of different factors affect the JITC's decisions.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top