码迷,mamicode.com
首页 > 编程语言 > 详细

003-JavaString数据类型

时间:2019-06-07 11:17:19      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:print   区别   一个   span   中间   类型   int   字符串   string   

String类型可以和8中基本数据类型做运算(byte/short/char/int/long/float/double/boolean),且只能是连接运算

1. 区分 连接符 和 “+” 的区别

char c = ‘a‘;
int num = 10;
String str = "hello";
System.out.println(c + str + num); //ahello10
System.out.println(str + (c + num));//hello107
System.out.println(c + num + str);//107hello

2.输出 “*  *”这样的一个字符串,其中字符串中间的空白是制表符

System.out.println("*   *");//成功
System.out.println(‘*‘ + ‘\t‘ + ‘*‘);//93
System.out.println(‘*‘ + ‘\t‘ + "*");//51*,右上一行和本行,可得到*的ascii码值为42
System.out.println(‘*‘ + "\t" + ‘*‘);//成功
System.out.println("*" + ‘\t‘ + ‘*‘);//成功
System.out.println(‘*‘ + (‘\t‘ + "*"));//成功

 

003-JavaString数据类型

标签:print   区别   一个   span   中间   类型   int   字符串   string   

原文地址:https://www.cnblogs.com/Sinkinghost/p/10987607.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!