String类型变量的使用和进制表示
1.String属于引用数据类型,翻译为:字符串
class StringTest{
public static void main(String[] args){
String s1 = "Hello World!";
System.out.println(s1);
String s2 = "a";
String s3 = "";
}
}
2.声明String类型变量时,使用一对" "
3.String可以和8种基本类型做运算,运算结果仍为String类型
public class Main {
public static void main(String[] args) {
String s1 = "Hello World!";
System.out.println(s1);
String s2 = "a";
String s3 = "";
System.out.println(s2+s3);
int number = 1001;
String numberStr = "学号: ";
String info = numberStr + number;// +连接运算
boolean b1 = true;
String info1 = info + b1;// +连接运算
System.out.println(info1);
char c = 'a';
int num = 10;
String str = "hello";
System.out.println(c+ num + str);//107hello
System.out.println(c + str +num);//ahello10
System.out.println(c + (num + str));//a10hello
System.out.println((c + num) + str);//107hello
System.out.println(str + num + c);//hello10a
}
}
运行结果:
4.变量之进制
所有数字在计算机底层都以二进制形式存在。
对于整数,有四种表示方式:
1.二进制(binary)0,1 ,满2进1 以0b或0B开头
2.十进制(decimal)0-9 ,满10进1.
3.八进制(octal):0-7,满8进1,以数字0开头表示。
4.十六进制(hex):0-9及A-F,满16进1,以0x或0X开头表示。此处的A-F不区分大小写
如:0x21AF +1 = 0X21B0
public class Main {
public static void main(String[] args) {
int num1 = 0b110;
int num2 = 110;
int num3 = 0127;
int num4 = 0x110A;
System.out.println("num1 = " + num1);
System.out.println("num2 = " + num2);
System.out.println("num3 = " + num3);
System.out.println("num4 = " + num4);
}
}
运行结果: