String类型变量的使用

这篇博客介绍了Java中String类型的使用,包括如何声明、如何进行字符串连接运算以及与基本数据类型混合运算。同时,文章展示了将整数转换为String以及使用Integer.parseInt()方法将String转回整数的过程。此外,还提供了两个练习题,探讨了字符、数字和字符串的混合运算,并讲解了转义字符和字符串连接的细节。
摘要由CSDN通过智能技术生成

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

	}
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值