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?

Java解説 20250602

Posted at

プログラムの作成

class sample {
# メインメソッドは下記の記述
 public static void main (string[] args) {
  system.out.println("Hello")
 }
}

main() メソッド

・プログラムの実行開始位置を表している。
・メソッドとは、ロジックを使用して処理を実行するブロック(中カッコ{})。

クラスファイル

・下記コマンドを実行するとフォルダに.classというファイルが作成される。
・.classファイルは、JVMが解釈し実行できるファイル。

javac ソールファイル名.java

JVM

Javaのプログラムを動作するのに必要なソフトウェアです。


オラクル認定資格教科書 Javaプログラマ Bronze SE(試験番号1Z0-818)

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?