Answer the question
In order to leave comments, you need to log in
Code compilation time?
Good afternoon. I'm a newbie and there's a lot I don't know yet. But how long should hello world to java compile? And does iron depend on it? (weak laptop amd e2-9000e) Approximately 4 seconds displays the simplest code in inteliji idea
Answer the question
In order to leave comments, you need to log in
The compiler itself works for a fraction of a second, the IDE imposes all other costs.
how long should hello world to java compile? And does iron depend on it?
plshlp , create a text file, name it Main.java, write a program (example below)
public class Main {
public static void main(String[] args) {
String str = "Hello World!"
System.out.println(str);
}
}
"путь к javac.exe" Main.java
"путь к java.exe" Main
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question