📜  什么是 java 中的赋值示例 - Java 代码示例

📅  最后修改于: 2022-03-11 14:52:39.741000             🧑  作者: Mango

代码示例1
The Java Assignment Operators are used when you want to assign a value to the 
expression. ... variable = expression;
Example: int a = 6; float b = 6.8F; 
Java also has the facility of chain assignment operators,
where we can specify a single value for multiple variables.