赞
踩
都是用来封装字符串
1.在Java中可以通过以下两种方式对 String 类进行初始化。
String str1 = "abc";
public String() //创建一个空白字符串对象,不含有任何内容
public String(char[]chs) //根据字符组的内容,来创建字符串对象
public String(byte[]bys) //根据字节组的内容,来创建字符串对象
2.string类 常见方法
1.构造方法
public String Buffer() //创建一个空白可变字符串对象,不含有任何内容
public String Buffer(String str) //根据字符串内容,来创建可变字符串对象
2.String Buffer类的常用方法
String 和 String Buffer 区别
String Buffer 和 String Builder
Runtime类用于表示虚拟机运行时的状态,它用于封装JVM虚拟机进程。每次使用java命令启动虚拟机都对应一人Runtime实例,并且只有一个实例因此该类采用单例模式进行设计
若想在程序中获得一个Runtime实例,只能通过以下方式 Runtime run = Runtime.getRuntime();
由于Runtime类封装了虚拟机进程,因此,在程序中通常会通过该类的实例对象来获取当前虚拟机的相关信息
Runtime类中提供了一个exec()方法该方法用于执行一个dos命令,从而实现和在命令行窗口中输入dos命令同样的效果。通过运行“notepad.exe”命令打开一个Windows自带的记事本程序
如果希望打开的记事本在3秒后关闭,则需要调用destroy()方法
1.算术计算
System.out.println(Math.sqrt(16)); // 4.0
System.out.println(Math.cbrt(8)); // 2.0
System.out.println(Math.pow(3, 2)); // 9.0
System.out.println(Math.max(2.3, 4.5));// 4.5
System.out.println(Math.min(2.3, 4.5));// 2.3
/**
* abs求绝对值
*/
System.out.println(Math.abs(-10.4)); // 10.4
System.out.println(Math.abs(10.1)); // 10.1
2.进位
/** * ceil天花板的意思,就是向上取整 */ System.out.println(Math.ceil(-10.1)); // -10.0 System.out.println(Math.ceil(10.7)); // 11.0 System.out.println(Math.ceil(-0.7)); // -0.0 System.out.println(Math.ceil(0.0)); // 0.0 System.out.println(Math.ceil(-0.0)); // -0.0 System.out.println(Math.ceil(-1.7)); // -1.0 System.out.println("-------------------"); /** * floor地板的意思,就是向下取整 */ System.out.println(Math.floor(-10.1)); // -11.0 System.out.println(Math.floor(10.7)); // 10.0 System.out.println(Math.floor(-0.7)); // -1.0 System.out.println(Math.floor(0.0)); // 0.0 System.out.println(Math.floor(-0.0)); // -0.0 System.out.println("-------------------"); /** * rint 四舍五入,返回double值 注意.5的时候会取偶数 异常的尴尬=。= */ System.out.println(Math.rint(10.1)); // 10.0 System.out.println(Math.rint(10.7)); // 11.0 System.out.println(Math.rint(11.5)); // 12.0 System.out.println(Math.rint(10.5)); // 10.0 System.out.println(Math.rint(10.51)); // 11.0 System.out.println(Math.rint(-10.5)); // -10.0 System.out.println(Math.rint(-11.5)); // -12.0 System.out.println(Math.rint(-10.51)); // -11.0 System.out.println(Math.rint(-10.6)); // -11.0 System.out.println(Math.rint(-10.2)); // -10.0 System.out.println("-------------------"); /** * round 四舍五入,float时返回int值,double时返回long值 */ System.out.println(Math.round(10)); // 10 System.out.println(Math.round(10.1)); // 10 System.out.println(Math.round(10.7)); // 11 System.out.println(Math.round(10.5)); // 11 System.out.println(Math.round(10.51)); // 11 System.out.println(Math.round(-10.5)); // -10 System.out.println(Math.round(-10.51)); // -11 System.out.println(Math.round(-10.6)); // -11 System.out.println(Math.round(-10.2)); // -10
【注意】这里有一个非常需要注意的一点是:这里所有进位的方法的入参都要保证是float或者double类型,否则进位方法将毫无意义。例如如下我们经常犯的错误:
int a = 1300, b = 1000;
System.out.println(Math.ceil(a / b)); // 1 表达式A(错误使用)
System.out.println(Math.ceil(a / (float)b)); // 2 表达式B(正确使用)
看上去表达式A和表达式B没有什么区别,可仔细分析可知:a / b = 1 ,而 a / (float)b = 1.3, 实际上表达式A的Math.ceil()根本起不了任何作用。
3.随机数
System.out.println(Math.random()); // [0, 1)的double类型的数
System.out.println(Math.random() * 2);//[0, 2)的double类型的数
System.out.println(Math.random() * 2 + 1);// [1, 3)的double类型的数
4.函数
System.out.println(Math.cos(Math.toRadians(60))); // cos 得1/2
System.out.println(Math.sin(Math.toRadians(90))); // sin 得1
5.对数函数
System.out.println(Math.log10(100)); //对数函数 得2
1.两个构造方法
2.常用方法
seed参数的含义:不同的seed值,产生的随机数不同。反之,则相同
Random r = new Random( seed : 1000) ;
for (int i = 0; i<10;i++){
System.out.print(r.nextlnt(bount:60)+" ")//产生一个从1到60的随机数。60是取值范围
Random r2 = new Random( seed : 100) ;
for (int i = 0; i<10;i++){
System.out.print(r2.nextlnt(bount:60)+" ")//产生一个从1到60的随机数。60是取值范围
1.什么是包装类
2.Integer类
Integer类除了具有Object类的所有方法外,还有一些特有的方法
包装类和基本数据类型在进行转换时,引入了装箱和拆箱的概念
(1)箱:是指将基本数据类型的值转为引用数据类型。
(2)拆箱:是指将引用数据类型的对象转为基本数据类型。
不建议使用
1.用法
2.Calendar类为操作日期和时间提供了大量的方法,常见的方法有
实例
1
5.
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。