Java は 3 つのシステムに分かれています。

JavaSE (J2SE) (Java2 Platform Standard Edition、Java platform Standard Edition)

JavaEE (J2EE) (Java 2 Platform、Enterprise Edition) )、Java platform Enterprise Edition)

JavaME (J2ME) (Java 2 Platform Micro Edition、Java platform micro edition)。

Java変数の型 構文

Java 言語では、すべての変数を使用前に宣言する必要があります。

Java変数の型 例

パブリック クラス変数{
static int allClicks=0; // クラス変数
​
String str="hello world"; // インスタンス変数
​
パブリック void メソッド(){
​
Int i = 0; // ローカル変数
​
}}