对字符类型赋值使用单引号' ',
public class Welcome {
public static void main(String[] args) {
char ch;
ch='a';
System.out.println(ch);
}
}
输出为a
字符类型还可以直接使用整数来赋值,因为java中对字符类型使用的是uncode字符。
public class Welcome {
public static void main(String[] args) {
char ch;
ch=98;
System.out.println(ch);
}
}
输出为b
在java中小数常量被默认为double类型,如1.3默认为double类型。如果要声明为float类型,需要在之后加f,如1.3f
public class Welcome {
public static void main(String[] args) {
float f;
f=1.3f;
System.out.println(f);
}
}
输出为1.3
在java中boolean 布尔类型只有2个取值是true和false,不能赋值为1之类的整数。
public class Welcome {
public static void main(String[] args) {
boolean bool;
bool=true;
System.out.println(bool);
}
}
输出为true
在做条件判断的时候,不能再像c语言那样使用if(1)或where(1)这样的语句。
只能写为if(true)或where(true)这样。