Answer the question
In order to leave comments, you need to log in
Is there a Java interpreter without an environment, like console ones?
I'm going to learn Java, I don't intend to program right away in the environment. Notepad++ will be used for coding. Tell me, is there a Java interpreter without an environment, like console ones? For I installed IntelliJ IDEA and I couldn’t even create a project properly. No experience or knowledge yet.
And at the same time they could suggest what materials to start with.
As a target - web applications for android, ios.
Thanks in advance.
Answer the question
In order to leave comments, you need to log in
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World");
}
}
javac HelloWorld.java
java HelloWorld
It's better to deal with IDEA after all, because. this will save you a lot of time in the future. Read the docs, watch development video courses, and everything will fall into place.
Writing code in notepad is not the best idea. Very uncomfortable. Try netbeans, it's much clearer than IDEA.
And yes, if android - then eclipse. Other environments are very buggy when developed for it. I didn’t get the idea at all, and the nbandroid plugin for netbins is very buggy when working with menus, in addition, there is no layout editor. But for studying Java, I do not advise you to use Eclipse, it is extremely flawed.
Learning a language by Q/A is not an option. Look for the book and read it completely, without it nothing will come of it.
Tell me, is there a Java interpreter without an environment, like console ones?
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question