1.JAVA中打印格式

System.out.print("hello world");//直接打印输出
System.out.println("hello world");//打印输出换行,类似于C中printf("hello world\n");

JDK5.0中

System.out.printf("hello world");//类似于printf
System.out.printf("%d",i);//打印输出i的十进制

其中printf格式:

%  -   0   m.n   l或h   格式字符

%:格式的起始字符

-:对齐方式,有“-”表示左对齐,没有则右对齐

0:填充位,表示指定空位填0,省略则不填

m.n:其中m表示域宽,n表示精度

l或h:l加上整型表示long型,实型(浮点型)表示double,h加上整形表示short

格式字符:%d,%f,%o(8进制),%x(16进制),%c,%s等

 

2.字符串长度统计

str.length();//返回字符串长度

.length()长度为32位