For me, who was a beginner, I felt that it was a fairly precise language. I just stumbled, but as I got used to it, my understanding seemed to deepen.
Before that, I often use discord for exchanging codes and files.
It seems to be convenient when developing with a large number of people or educational development. I feel good with Slack.
pwd /*Check the current location display*/
vi ~/.bashrc
alias javac='javac -J-Dfile.encoding=UTF-8'
alias java='java -Duser.language=ja -Dfile.encoding=UTF-8'
sc(){
start chrome $1
}
ctrl +from c:wq
cd folder name//cd test/Test2 and time saving movement are also possible
mkdir folder name
vi folder name.java
public class Main{
public static main(String[] arrgs){
System.out.println("Hello World!");
}
}
ctrl +Exit insert mode with c:wq
$ javac Main.java
$ java Main
Hello World! //Is output, ok
That's all
Recommended Posts