String类型变量的使用
String类型变量的使用!
/*
String类型变量的使用
1.String属于引用数据类型,翻译为:字符串
2.声明String类型变量时,使用一对""
3.String可以和8种基本数据类型变量做运算!且运算只能是连接运算:+
4.运算结果,仍然是String类型
*/
class StringTest
{
public static void main(String [] args)
{
String s1 = "Hello World!";
System.out.println(s1);
String s2 = "a";
String s3 = "";
//编译不通过,char后面必须放字符,String不用。。char c = '';
//***********
int number = 1001;
String numberStr = "学号:";
String info = numberStr + number;//+:连接运算
boolean b1 = true;
String info1 = info + b1;
System.out.println(info1);
//***********
//练习1
char c = 'a';//a:97 A:65
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
//练习2
//* *
System.out.println("* *");
System.out.println('*' + '\t' + '*');//93
System.out.println('*' + "\t" + '*');
System.out.println('*' + '\t' + "*");//51*
System.out.println('*' + ('\t' + "*"));
//***********
String str1 = 123+"";
System.out.println(str1);//"123"
//int num1 = str1; 错误
//int num1 = (int)str1;错误
int num1 = Integer.parseInt(str1);
System.out.println(num1);//123
}
}