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 3 years have passed since last update.

Java基本的なまとめ

Last updated at Posted at 2021-10-01

#クラス
クラスを組み合わせて一つのプログラムを作るイメージ。
クラスが集合体になってJavaの土台となっていくイメージ

10285001417.jpg

クラスを定義する

Greeting.java
class Greeting{
  public static void main(String args[]){

  }
}

①class Greetingと定義する。クラスを定義する際、最初にclassと記述しなければならない。

②classの次は、どんな名前のクラスを決定する。クラスの名前のことを「クラス名」という。

※ファイル名とクラス名は同じにする必要がある。
※クラス名の最初は大文字にするのが鉄則。

③クラス名の後は波括弧を記述する。波括弧で囲まれた部分をブロックと呼ぶ。
波括弧の中に、プログラムにどんなことをさせるのか処理を記述する。

#メソッド

Greeting.java
class Greeting{
  public static void main(String args[]){

  }
}

①メソッドの書き方はpublicと
②static,main,丸括弧
③String arg 角括弧

#挨拶を処理させるプログラム

Greeting.java
public class Greeting {
    public static void main(String[] args){
        System.out.println("Good morning");

        System.out.println("Good afternoon");

        System.out.println("Good evening");
    }
}

ファイルを実行して、文字を表示してみます。
ターミナルからコンパイルを実行!

コンパイル方法はJavacと書いて、Javaのファイル名を書く。
すると、Greeting.classというファイルが生成される。
次にJava,後ろにファイル名を記載しEnter。

実行結果
Good morning
Good afternoon
Good evening

コンパイルとは、Javaのプログラムをパソコンが読み取れる機械語に変換すること。

0
0
6

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?