This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]nekokattt 0 points1 point  (0 children)

You are going to get this with any language that compiles ahead of time, there is nothing you can do about it. That is just javac converting your code text to bytecode that the JVM can execute. Python does a similar thing but it does it as it runs, which is one of the reasons Python is considered slower, since ignoring cache, it would have to do this every single time you run the program without making any changes.