_Constant定数and_Variable変数
まず,Javaではconstantを用いて定数を定義し,Variableを用いて変数を定義する.
Constant定数.定数の概念:変化しない量、および修正されない量 .定数の分析:(1)字面値定数(把握)(2)カスタム定数(了解) 3.注意事項:文字列定数と文字定数を区別する文字列定数:「HelloWorld」文字定数:'a' 補足2つのショートカット:–mainメソッドのショートカット:psvm–出力文のショートカット:sout
定数:
Variable変数
変数の定義と使用
Constant定数
定数:
*** :***
, 。
*** :***
1. , “” , “abc”
2. , ’‘ , ’a‘,’0‘
3. , 10,20
4. ,1,2
5. , ,true false
6. ,null 。
public class ConstantDemo {
/*
Constant
1. : ,
2. :
(1) ( )
(2) ( )
3. :
: "HelloWorld"
: ’a‘
:
main :psvm
: sout
:
:
, 。
:
1. , “” , “abc”
2. , ’‘ , ’a‘,’0‘
3. , 10,20
4. ,1,2
5. , ,true false
6. ,null 。
* */
public static void main(String[] args) {
//1.
System.out.println("abc");
System.out.println("123");
//
System.out.println('a');
System.out.println('0');
//
System.out.println(10);
System.out.println(-10);
//
System.out.println(1.2);
System.out.println(-12.3);
//
System.out.println(true);
System.out.println(false);
}
}
Variable変数
変数の定義と使用
1. :
,
,
2. : = ;
: ,
: ,
3. :
4. : 。
public class VariableDemo {
//Variable
/*
1. :
,
,
2. : = ;
: ,
: ,
3. :
4. : 。
*/
public static void main(String[] args) {
// ,
// : =
int number = 12;
//
System.out.println(number);
}
}