0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

JAVA(初めの一歩:GitBush編)

Last updated at Posted at 2019-09-27

初学者だった僕にとってはかなりきっちりしてる言語だなーと感じてました。
つまずきばかりでしたが慣れてくれば理解度は深まったように思えます。

その前にコードやファイルのやり取りはdiscordがいいみたいでよく使用してます。

多人数で開発又は教育開発をする場合は便利だと思われます。
Slackでもいい気もしてます。

#まず初めに場所を確認する

pwd /*現在の場所表示を確認する*/

#文字化け防止に

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 + c から :wq 

#任意の場所に移動する

cd フォルダ名 //cd test/test2と時短移動も可能

#フォルダを作成する

mkdir フォルダ名

#移動したフォルダにvimでファイルを作り開く

vi フォルダ名.java

#記述してみる

public class Main{
  public static main(String[] arrgs){
     System.out.println("Hello World!");
  } 
}

#セーブ

ctrl + c でインサートモードを抜けて:wq

#コンパイル

$ javac Main.java

#コンパイル

$ java Main
Hello World! //と出力されればok

以上かなっと

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?