我是靠谱客的博主 缥缈钢笔,最近开发中收集的这篇文章主要介绍String类型变量的使用,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

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

	}
}

最后

以上就是缥缈钢笔为你收集整理的String类型变量的使用的全部内容,希望文章能够帮你解决String类型变量的使用所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(38)

评论列表共有 0 条评论

立即
投稿
返回
顶部