Java基础知识复习三

目录

第4章面向对象(下)

4.5 异常

什么是异常

try...catch和finally 

throws关键字

运行时异常和编译时异常

自定义异常

访问控制

第五章 JavaAPI类的初始化

5.1 string类和stringBuffer类

string类的常见操作

string buffer类

案例篇

5.2 system类和runtime类

system类

runtime类

5.3 math类和random类

math类

random类

5.4 包装类

案例篇 字符串排序程序设计

5.5 JDK型特性——switch语句支持字符串类型

本章小结


第4章面向对象(下)

4.5 异常

什么是异常

尽管人人希望自己身体健康,处理的事情都能顺利进行,但在实际生活中总会遇到各种状况,比如感冒发烧,工作时电脑蓝屏、死机等。同样,在程序运行的过程中,也会发生各种非正常状况,比如程序运行时磁盘空间不足、网络连接中断、被装载的类不存在等。针对这种情况,在Java语言中,引入了异常,以异常类的形式对这些非正常情况进行封装,通过异常处理机制对程序运行时发生的各种问题进行处理。

package W;

public class A1 {

 public static void main(String[] args) {
   int result=divide(4,2);//调用divide()方法//把2改成0的话0不允许做除数就会出现异常
   System.out.println(result);
  }
  //下面的方法实现了两种整数相除
  public static int divide(int x,int y){
   int result=x/y;
   return result;
  }
 }

 把2改成0的话0不允许做除数就会出现异常:

public class DateTest {

 public static void main(String[] args) {
   int result=divide(4,0);//调用divide()方法//把2改成0的话0不允许做除数就会出现异常
   System.out.println(result);
  }
  //下面的方法实现了两种整数相除
  public static int divide(int x,int y){
   int result=x/y;
   return result;
  }
 }

运行结果:

接下来通过一张图来展示Throwable类的继承体系,如下图所示:

通过图中可以看出,Throwable有两个直接子类Error和Exception,其中Error代表程序中产生的错误,Exception代表程序中产生的异常。

接下来就对这两个直接子类进行详细的讲解。

  • Error类称为错误类,它表示Java运行时产生的系统内部错误或资源耗尽的错误,是比较严重的,仅靠修改程序本身是不能恢复执行的。举一个生活中的例子,在盖楼的过程中因偷工减料,导致大楼坍塌,这就相当于一个Error。使用iava命令去运行一个不存在的类就会出现Error错误
  • Exception类称为异常类,它表示程序本身可以处理的错误,在开发Java程序中进行的异常处理,都是针对Exception类及其子类。在Exception类的众多子类中有一个特殊的RuntimeException类,该类及其子类用于表示运行时异常,除了此类,Exception类下所有其他的子类都用于表示编译时异常。本节主要针对Exception类及其子类进行讲解。

通过前面的学习读者已经了解了Throwable类,为了方便后面的学习,接下来将Throwable类中的常用方法罗列出来。

try...catch和finally 

Java中提供了一种对异常进行处理的方式一一异常捕获。异常捕获通常使用try...catch语句,具体语法格式如下:

try{

        //程序代码块

}catch(ExceptionTye(Exception类及其子类) e){

        //对 ExceptionType的处理

}

其中在try代码块中编写可能发生异常的Java语句,catch代码块中编写针对异常进行处理的代码。当try代码块中的程序发生了异常,系统会将这个异常的信息封装成一个异常对象,并将这个对象传递给catch代码块。catch代码块需要一个参数指明它所能够接收的异常类型,这个参数的类型必须是Exception类或其子类。

package W;

public class A1 {

 public static void main(String[] args) {
  //下面的代码定义了一个try...catch...finally语句用于捕获异常
  try {
   
   int result=divide(4,2);//调用divide()方法
   System.out.println(result);
  }catch(Exception e) {//对捕获的异常进行处理
   System.out.println("捕获的异常信息为:"+e.getMessage());
   return;//结束整个方法
  }finally {
   System.out.println("进入finally代码块");
  }
   System.out.println("程序继续向下执行");
  }
  
  //下面的方法实现了两种整数相除
  public static int divide(int x,int y){
   int result=x/y;//定义变量result记录两个数相除的结果
   return result;
  }
 }

运行结果:

 

package W;

public class A1 {

 public static void main(String[] args) {
  //下面的代码定义了一个try...catch...finally语句用于捕获异常
  try {
   
   int result=divide(4,0);//调用divide()方法
   System.out.println(result);
  }catch(Exception e) {//对捕获的异常进行处理
   System.out.println("捕获的异常信息为:"+e.getMessage());
   return;//结束整个方法
  }finally {
   System.out.println("进入finally代码块");
  }
   System.out.println("程序继续向下执行");
  }
  
  //下面的方法实现了两种整数相除
  public static int divide(int x,int y){
   int result=x/y;//定义变量result记录两个数相除的结果
   return result;
  }
 }

运行结果:

throws关键字

在上一小节学习的文件中,由于调用的是自己写的divide()方法,因此很清楚该方法可能会发生异常。试想一下,如果去调用一个别人写的方法时,是否能知道别人写的方法是否会有异常呢?这是很难做出判断的。针对这种情况,Java中允许在方法的后面使用throws关键字对外声明该方法有可能发生的异常,这样调用者在调用方法时,就明确地知道该方法有异常,并且必须在程序中对异常进行处理,否则编译无法通过。

throws关键字声明抛出异常的语法格式如下:

修饰符 返回值类型 方法名([参数1,参数2....])throws ExcepsionTypel[,ExceptionType2.....]{

}

从上述语法格式中可以看出,throws关键字需要写在方法声明的后面,throws后面需要声明方法中发生异常的类型,通常将这种做法称为方法声明抛出一个异常。

package W;

public class A1 {

public static void main(String[] args) throws Exception{
//下面的代码定义了一个try...catch语句用于捕获异常
try {
int result=divide(4,2);//调用divide()方法
System.out.println(result);
}catch(Exception e) {//对捕获的异常进行处理
e.printStackTrace();//打印捕获的异常信息
}
}
//下面的方法实现了两种整数相除,并使用throws关键字声明抛出异常
public static int divide(int x,int y)throws Exception{
int result=x/y;//定义变量result记录两个数相除的结果
return result;
}
}

 

运行时异常和编译时异常

在实际开发中,经常会在程序编译时产生一些异常,而这些异常必须要进行处理,这种异常被称为编译时异常,也称为checked异常。另外还有一种异常是在程序运行时产生的,这种异常即使不编写异常处理代码,依然可以通过编译因此被称为运行时异常,也称为unchecked异常。

1.编译时异常

在Java中,Exception类中除了RuntimeException类及其子类都是编译时异常。编方译时异常的特点是Java编译器会对其进行检查,如果出现异常就必须对异常进行处理,否则程序无法通过编译。处理编译时期的异常有两种方式:

  • 使用try...catch语句对异常进行捕获
  • 使用throws关键字声明抛出异常,调用者对其处理。

2.运行时异常

RuntimeException类及其子类都是运行时异常。运行时异常的特点是Java编译器不会对其进行检查,也就是说,当程序中出现这类异常时,即使没有使用try..catch语句捕获或使用throws关键字声明抛出,程序也能编译通过。运行时异常一般是由程序中的逻辑错误引起的,在程序运行时无法恢复。比如通过数组的角标访问数组的元素时,如果超过了数组的最大角标,就会发生运行时异
常,代码如下所示:

int[] arr=new int[5];

System.out.println(arr[6]);

上面代码中,由于数组arr的length为5,最大角标应为4,当使用arr[6]访问数组中的元素就会发生数组角标越界的异常。

自定义异常

JDK中定义了大量的异常类,虽然这些异常类可以描述编程时出现的大部分异常情况,但是在程序开发中有时可能需要描述程序中特有的异常情况,例如文件4-38中在divide()方法中不允许被除数为负数。为了解决这个问题,在Java中允许用户自定义异常,但自定义的异常类必须继承自Exception或其子类。

案例:

自定义异常
package W;
//下面的代码是自定义一个异常类继承Excption
public class DivideByMinusExcption extends Exception{
public DivideByMinusExcption() {
super ();//调用Excption无参构造方法
}
public DivideByMinusExcption(String message) {
super(message);
}
}

package W;
public class Excption {
public static void main(String[] args) {
int result=divide(4,-2);//调用divide()方法,传入一个负数作为被除数
System.out.println(result);
}
//下面的方法实现了两种整数相除
public static int divide(int x,int y){
if (y<0) {
//throw new DivideByMinusExcption("除数是负数");//使用throw关键字抛出异常对象
}
int result=x/y;//定义变量result记录两个数相除的结果
return result;
}
}


package W;

public class Excption2 {

public static void main(String[] args) {
try {
int result=divide(4,-2);//调用divide()方法,传入一个负数作为被除数
System.out.println(result);
}catch (DivideByMinusExcption e) {//对捕获的异常进行处理
System.out.println(e.getMessage());//打印捕获的异常信息
}

}
//下面的方法实现了两种整数相除,使用throws关键字声明抛出异常
public static int divide(int x,int y)throws DivideByMinusExcption{
if (y<0) {
throw new DivideByMinusExcption("除数是负数");//使用throw关键字抛出异常对象
}
int result=x/y;//定义变量result记录两个数相除的结果
return result;
}
}

自定义异常
package W;
//下面的代码是自定义一个异常类继承Excption
public class DivideByMinusExcption extends Exception{
public DivideByMinusExcption() {
super ();//调用Excption无参构造方法
}
public DivideByMinusExcption(String message) {
super(message);
}
}

package W;
public class Excption {
public static void main(String[] args) {
int result=divide(4,-2);//调用divide()方法,传入一个负数作为被除数
System.out.println(result);
}
//下面的方法实现了两种整数相除
public static int divide(int x,int y){
if (y<0) {
//throw new DivideByMinusExcption("除数是负数");//使用throw关键字抛出异常对象
}
int result=x/y;//定义变量result记录两个数相除的结果
return result;
}
}


package W;

public class Excption2 {

public static void main(String[] args) {
try {
int result=divide(4,-2);//调用divide()方法,传入一个负数作为被除数
System.out.println(result);
}catch (DivideByMinusExcption e) {//对捕获的异常进行处理
System.out.println(e.getMessage());//打印捕获的异常信息
}

}
//下面的方法实现了两种整数相除,使用throws关键字声明抛出异常
public static int divide(int x,int y)throws DivideByMinusExcption{
if (y<0) {
throw new DivideByMinusE

结果如下:

 

访问控制

在Java中,针对类、成员方法和属性提供了四种访问级别,分别是private、default、protected和public。接下来通过一个图将这四种控制级别由小到大依次列出,如下图所示。

上图中展示了Java中的四种访问控制级别,具体介绍如下:

  • private(类访问级别):如果类的成员被private访问控制符来修饰,则这个成员只能被该类的其他成员访问,其他类无法直接访问。类的良好封装就是通过private关键字来实现的。
  • default(包访问级别): 如果一个类或者类的成员不使用任何访问控制符修饰,则称它为默认访问控制级别,这个类或者类的成员只能被本包中的其他类访问。
  • protected(子类访问级别): 如果一个类的成员被protected访问控制符修饰,那么这个成员既能被同一包下的其他类访问,也能被不同包下该类的子类访问。
  • public(公共访问级别):这是一个最宽松的访问控制级别,如果一个类或者类的成员被public访问控制符修饰,那么这个类或者类的成员能被所有的类访问,不管访问类与被访问类是否在同一个包中。

接下来通过一个表将这四种访问级别更加直观的表示出来,如下表所示。

第五章 JavaAPI类的初始化

5.1 string类和stringBuffer类

API(Application Programming Interface)指的是应用程序编程接口。假设使用Java语言编写一个机器人程序去控制机器人踢足球,程序就需要向机器人发出向前跑、向后跑、射门、抢球等各种命令,没有编过程序的人很难想象这样 的程序如何编写。但是对于有经验的开发人员来说知道机器人厂商一定会提供一些用于控制机器人的Java类,这些类中定义好了操作机器人各种动作的方法。其实,这些Java类就是机器人厂商提供给应用程序编程的接口,通常把这些类称为Xxx Robot API(意思是Xxx厂家的机器人API)。

在应用程序中经常会用到字符串,所谓字符串就是指一连串的字符,它是由许多单个字符连接而成的,如多个英文字母所组成的一个英文单词。字符串中可以包含任意字符,这些字符必须包含在一对双引号“”之内,例如“abc”。在Java中定义了String和StringBuffer两个类来封装字符串,并提供了一系列操作字符串的方法,它们都位于java.lang包中,因此不需要导包就可以直接使用。

String类的初始化

在操作String类之前,首先需要对String类进行初始化,在Java中可以通过以下两种方式对string类进行初始化,具体如下:

  • 使用字符串常量直接初始化一个String对象,具体代码如下:

String str1 = "abc";

  • 使用String的构造方法初始化字符串对象,String类的构造方法如下表所示。

package b;

public class Example01 {
 public static void main(String[]args) {
  String str1="abc";
  //字符串常量直接赋值
  String str2=new String();
  //String()空参数构造方法,创建一个String类对象,内容为空
  String str3=new String("abcd");
  //String(String s)创建一个String类对象,指定一个字符串内容
  char[]charArray=new char[] {'E','F','G'};
  String str4=new String(charArray);
  
  
  
  System.out.println(str1);
  System.out.println("a"+str2+"b");//ab
  System.out.println(str3);
  System.out.println(str4);
 }
}

运行结果:

string类的常见操作

string类在实际开发中的应用非常广泛,因此灵活地使用string类是非常重要的,接下来介绍string类常用的一些方法如下表所示。

package W;
/*
 * String类的基本操作
 * 在程序中,需要对字符串进行一些基本操作,如获取字符串长度,获取指定位置的字符等
 * public int length() 获取字符串的长度
 * public char charAt(int index) 获取字符串中指定位置上的字符 
 * public int  indexof(char ch) 获取指定字符在字符串中第一次出现的位置
 * public int lastIndexof(char ch)获取指定字符在字符串中最后一次出现的位置
 * public int indexof(String str)获取指定子串在字符串中第一次出现的位置
 * public int lastIndexof(String str)获取指定子串在字符串中最后异常出现的位置
 */
public class Exampel {
 public static void main(String[] args) {
  //声明一个字符串
  String s="abcabcdebca";
  System.out.println("获取字符串的长度:"+s.length());
  System.out.println("获取字符串中第一个字符:"+s.charAt(0));
  System.out.println("获取字符c第一次出现的位置:"+s.indexOf('c'));
  System.out.println("获取字符c最后一次出现的位置:"+s.lastIndexOf('c'));
  System.out.println("获取子串ab第一次出现的位置:"+s.indexOf("ab"));
  System.out.println("获取子串ab最后一次出现的位置:"+s.lastIndexOf("ab"));
 }
}

运行结果:

 字符串进行转换操作:

package W;
/*
 * String类的转换操作
 * 在程序开发中,经常需要对字符串进行转换操作,例如将字符串转换成数组的形式,将字符串的进行大小写转换等
 * public char[]tochatArray()将此字符串转换成字符数组
 * public static String valueof(int n)将指定int值转换成String类型
 * public String touppercase() 将此字符串中的字符全部转换成大写字母,会返回一个新的字符串
 */
public class Exampe {
 public static void main(String[] args) {
 //声明一个字符串
  String s="abcde";
  //将此字符串转换成字符数组
  char[] charArray=s.toCharArray();
  for (int i=0;i<charArray.length;i++) {
   //a,b,c,d,e
   if(i==charArray.length-1) {
    //数组最后一个元素,直接打印元素
    System.out.println(charArray[i]);
   }else {
    //打印元素值与逗号
    System.out.print(charArray[i]+",");
   }    
   }
  System.out.println("将指定int值转换成String类型后的结果"+String.valueOf(12));
  System.out.println("将字符串转换成大写字母的结果:"+s.toUpperCase());
    }
}

运行结果:

 

package W;

public class Example3 {
 /*
  * String类的替换与去除空格操作
  * 程序开发中,用户输入数据时经常会有一些错误和空格,这时可以使用String类的replace()和trim()方法,进行字符串的替换和去除空格操作。
  *  public String replace(String oldStr, String newStr)
  *  将原有字符串中o1dStr字符串内容用newStr字符串所替代,返回一个新的字符串
  *  public String trim() 返回一个新字符串,它去除了原有字符串的两端空格
  */

 public static void main(String[] args) {
  //声明一个字符串
   String s="itcast";
   String s2="i t c a s t  ";
  //者换操作
   System.out.println("将it替换成cn.it之后的结果:"+ s.replace("it","cn.it"));
  //去除空格操作
   System.out.println("去除左右两边空格后的结果:"+ s2.trim());
   System.out.println("去除全部空格后的结果:"+s2.replace(" ",""));
 }

}

运行结果:

 

//判断字符串是否以指定的字符串开始与结束,是否包含指定字符串是否为空等
package W;
/*
 * string类的判断操作
 * 操作字符串时,经常需要对字符串进行一些判断,如判断字符串是否以指定的字符串开始、结束,是否包含指定的字符串,字符串是否为空等。
 * public boolean startsWith(String stx)判断字符串是否以给定字符串stx开头
 * public boolean endswith(Stringstx)判断字符串是否以给定字符串stx结尾
 * public boolean contains(String str)判断字符串是否包含给定的字符串stx
 * public boolean isEmpty()判断字符串内容是否为空
 * public boolean equals(String stx)判断字符串与给定字符串stx的内容是否相同
 */

public class Example4 {

 public static void main(String[] args) {
  //声明一个字符串
  String s="String";
  String s2 ="Str";
  System.out.println("判断字符串是否以Str开头:"+s.startsWith("Str"));
  System.out.println("判断字符串是否以ng结尾:"+s.endsWith("ng"));
   System.out.println("判断字符串是否包含tri:"+ s.contains("tri"));
   System.out.println("判断当前字符串内容是否为空:"+s.isEmpty());
   System.out.println("判断两个字符串中的内容是否相同:"+ s.equals(s2));

 }

}

运行结果:

 

//字符串的截取和分割操作
package W;
/*
 * String类的截取与分割操作
 * 在String类中针对字符串的截取和分割操作提供了两个方法
 * 其中,substring()方法用于截取字符串的一部分
 * split()方法可以将字符串按照某个字符进行分割
 * public String substring(int start)返回一个新字符串,它从原有字符串指定位置开始截取,到字符串末尾结束
 * public String substring(intstart, int end) 返回一个新字符串,它从原有字符串指定位置开始截取,到指定位置结束
 * public String[] split(String regex)按照指定的字符串进行分割返回一个字符串数组
 * 
 */
public class Example5 {
 private static int i;

 public static void main(String[] args) {
  //声明一个字符串
  String s="羽毛球一篮球一乒乓球";
  //截取操作
  System.out.println("从第5个字符开始截取到末尾的结果:"+ s.substring(4));
  System.out.println("从第5个字符开始截取到第6个字符结束的结果:"+s.substring(4,6));//不包含结尾位置的字符
  //分割操作
  System.out.println("打印分割后的每个字符串内容"); 
  String[] strArray = s.split("-");
  for (int i= 0; i< strArray.length; i++);{
  // 羽毛球,篮球,乒乓球
  if (i== strArray.length -1) {
  //数组最后一个元素,直接打印数组元素值
  System.out.println( strArray[i]);
 }else {
   //打印数组元素值与逗号
    System.out.print( strArray[i] +","); 
 }
  }
 }
}

运行结果:

 

package W;
/*
 * String类的异常演示
 * String字符串在获取某个字符时,会用到字符的索引,当访问字符串中的字符时
 * 如果字符的索引不存在,则会发生StringIndex0utOfBoundsException(字符串角标越界异常)
 */
public class Example6 {
 public static void main(String[] args) {
  //声明一个字符串
  String s="abcde12345";
  System.out.println( s.charAt(10) );
 }
}

运行结果:

 

string buffer类

由于字符串是常量,因此一旦创建,其内容和长度是不可改变的。如果需要对一个字符串进行修改,则只能创建新的字符串。为了便于对字符串进行修改,在JDK中提供了一个StringBuffer类(也称字符串缓冲区)。StringBuffer类和String类最大的区别在于它的内容和长度都是可以改变的。StringBuffer类似-个字符容器,当在其中添加或删除字符时,并不会产生新的StringBuffer对象。

针对添加和删除字符的操作,StringBuffer类提供了一系列的方法,具体如下表所示。

/*
 * stringbuffer的构造方法
 * public stringBuffer()空参数构造方法
 *  public stringBuffer(string data)创建带有内容的字符串缓冲区
 * 
 * stringbuffer类的常用方法
 * public stringBuffer append(string str)向字符串缓冲区的末尾添加数据,返回当前的stringBuffer对象自身
 * public stringBuffer insert(int index,string str)向字符串缓冲区指定位置上,插入指定数据
 * public stringBuffer delete(int start,int end)删除字符串缓冲区指定范围内的数据
 * public stringBuffer deleteCharAt(int index)删除字符串缓冲区内指定位置上的数据
 * public int length()获取字符串缓冲区的长度
 * public stringBuffer replace(int start,int end,string str)替换字符串缓冲区指定范围内的字符串
 *  public stringBuffer setcharAt(int index,char ch)替换字符串缓冲区指定位置上的字符
 *  public stringBuffer reverse()字符串缓冲区数据翻转方法
 */
public class Test1{
  public static void main(String[] args) {
   System.out.println("1、添加----------------");
   add();
   System.out.println("2、删除----------------");
   remove();
   System.out.println("3、修改----------------");
   alter();
  }
  public static void add() {
   //定义一个字符串缓冲区
   StringBuffer sb=new StringBuffer();
   //向缓冲区的末尾添加指定字符串
   sb.append("abcdefg");
   System.out.println("append添加数据后的结果:"+sb);
   //向缓冲区指定位置插入字符串
   sb.insert(2, "123");
  System.out.println("插入数据后的结果:"+sb);
  }
  public static void remove() {
   //定义一个字符串缓冲区对象
   StringBuffer sb=new StringBuffer("abcdefg");
   //删除字符串缓冲区指定范围内的数据
   sb.delete(1, 5);//不包含结尾位置元素
   System.out.println("删除指定范围数据后的结果:"+sb);
   //删除字符串缓冲区指定位置上的字符
   sb.deleteCharAt(2);
   System.out.println("删除指定位置数据后的结果:"+sb);
  //清除字符串缓冲区
   sb.delete(0, sb.length());
   System.out.println("清除缓冲区数据后的结果:"+sb);
   
  }
  public static void alter() {
   //定义一个字符串缓冲区对象
   StringBuffer sb=new StringBuffer("abcdef");
   //修改指定位置的字符
   sb.setCharAt(1, 'p');
   System.out.println("修改指定位置数据后的结果"+sb);
   //修改指定范围内的数据
   sb.replace(1, 3, "qq");
   System.out.println("替换指定范围内字符串的结果"+sb);
   //字符串缓冲区数据翻转
   System.out.println("字符串缓冲区数据翻转后的结果"+sb.reverse());
  }
}

运行结果:

案例篇   记录一个子串在整串中出现的次数

/*
 * 记录一个子串在整串中出现的次数
 * 思路:
 *  1.定义一个整串,定义一个子串
 *  2.获取子串在整串中出现的次数
 */

public class TrigonometricFunction{
	public static void main(String[] args) {
		//1.定义一个整串,定义一个子串
		String str = "nbaernbatnbaynbauinbapnba";//整串
		String key = "nba";//子串
		//2.获取子串在整串中出现的次数
		int count = getKeyStringCount(str,key);
		System.out.println("count="+count);
		
	}
	//获取子串在整串中出现的次数
	public static int getKeyStringCount(String str, String key) {
		//定义计数器,用来记录出现的次数
		int count = 0;
		//如果整串中不包含子串,则直接返回count
		if(!str.contains(key)) {
			return count;
		}
		//定义变量,用来记录key出现的位置
		int index = 0;
		/*
		 * 1.查找子串在整串中出现的位置
		 * 2.将出现的位置记录在index变量中
		 */
		while((index = str.indexOf(key)) != -1) {
			//子串出现次数累加
			count++;
			//截取整串,从子串出现的位置后面开始,到整串末尾
			str = str.substring(index + key.length());
		}
		return count;
	}
}

运行结果:

5.2 system类和runtime类

system类

System类定义了一些与系统相关的属性和方法,它所提供的属性和方法都是静态的,因此,想要引用这些属性和方法,直接使用System类调用即可。

import java.util.Set;
/*
 * System类的方法
 * public static Properties getProperties()
 * 方法用于获取当前系统的全部属性,该方法会返回一个Properties类型的容器
 * 其中封装了系统的所有属性,这些属性是以”属性名=属性值“的形式存在的
 * public static String getProperty(String key)
 * 	获取指定键(属性名)所对应的系统属性值
 */
public class TrigonometricFunction{
	public static void main(String[] args) {
		//获取当前系统属性
		Properties properties = System.getProperties();
		System.out.println(properties);
		
		//获取所有系统属性的key(属性名),返回Set对象
		Set<String> PropertyNames = properties.stringPropertyNames();
		for(String key : PropertyNames) {
			//获取当前键key(属性名)所对应的值(属性值)
			String value = System.getProperty(key);
			System.out.println(key +"--->"+value);
			
		}
	}
}

运行结果:

 2.currentTimeMillis()

 currentTTimeMillis()方法 返回一个long类型的值,该值表示当前时间与1970年1月1日0点0分0秒之间的时间差,单位是毫秒,通常也将该值称作时间数。

/*
 * public static long currentTimeMillis()
 * 方法返回一个long类型的值,该值表示当前时间与1970年1月1日0点0分0秒之间的时间差,单位是毫秒,通常也将该值称作时间戳
 */
public class TrigonometricFunction{
	public static void main(String[] args) {
		//计算程序在进行求和操作时所消耗的时间
		
		//计算程序在进行求和操作时所消耗的事件
		long startTime = System.currentTimeMillis();
		int sum =0;
		for (int i=0;i < 100000000; i++) {
			sum+= i;
		}
		//循环结束后的当前时间
		long endTime =System.currentTimeMillis();
		System.out.println("程序运行的时间为:"+ (endTime - startTime) + "毫秒");
	}
}

运行结果:

  •  arraycopy(Object src,int srcPos,Object dest,int destPos,int length)

  • arrayoopy0方法用于将一个数组中的元素快速拷贝到另一个数组。其中的参数具体作用如下:

src:表示源数推

dest,来示目标数组。

srcPos,表示源数组中持贝元素的起始位置

destPos;表示揭贝到目标数组的起始位置。

length,表示拷贝元素的个数

/*
 *  arraycopy(Object src,int srcPos,Object dest,int destpos,int length)
 *  arraycopy()方法用于将一个数组中的元素快速拷贝到另一个数组。其中的参数具体作用如下:
 *  src:表示源数组。
 *dest:表示目标数组。
 *srcPos:表示源数组中拷贝元素的起始位置destPos:表示拷贝到目标数组的起始位置
 *lenqth: 表示拷贝元素的个数。
 */
public class TrigonometricFunction{
	public static void main(String[] args) {
		int[] fromArray ={101,102,103,104,105,106}; //源数组
		int[] toArray ={201,202,203,204,205,206,207}; //目标数组
		//拷贝数组元素,从fromArray数组2角标位置开始,拷贝4个素,到toArray数组3角标位置
		System.arraycopy(fromArray,2,toArray,3,4);
		//打印toArray数组中的元素
		for (int i = 0; i < toArray.length; i++) {
			System.out.println(i+":" + toArray[i]);
		}
	}
}

运行结果:

Runtime类

Runtime类用于表示虚拟机运行时的状态,它用于封装JVM虚拟机进程。每次使用java命令启动虚拟机都对应一个Runtime实例,并且只有一个实例,因此该类采用单例模式进行设计,对象不可以直接实例化。若想在程序中获得一个Runtime实例,只能通过以下方式:

Runtime run = Runtime .getRuntime():

由于Runtime类封装了虚拟机进程,因此,在程序中通常会通过该类的实例对象获取当前寻虚拟的相关信息。

/*
 * Runtime类的使用
 * public int availableProcessors()想Java虚拟机返回可以处理器的数目
 * public long freeMemory()返回Java虚拟机中的空闲内存里
 * public long maxMemory()返回Java虚拟机试图使用的最大内存量
 * public static Runtime getRuntime()返回与当前Java应用程序相关的运行时对象
 */
public class TrigonometricFunction{
	public static void main(String[] args) {
		//获取Runtime类对象
		Runtime rt = Runtime.getRuntime();
		System.out.println("处理器的个数:"+rt.availableProcessors()+"个");
		System.out.println("空闲内容数量:"+rt.freeMemory()/1024/1024+"M");
		System.out.println("最大可用内存数量:"+rt.maxMemory()/1024/1024+"M");
	}
}

运行结果:

 Runtime类中提供了一个exec()方法,该方法用于执行一个dos命令,从而实现和在命令窗口中输入dos命令同样的效果。

/*
 * Runtime类中提供了一个exec()方法,该方法用于执行一个dos命令,从而实现和在命令行窗口中输入dos命令同样的效果
 */ 
 
public class TrigonometricFunction{
	public static void main(String[] args) throws IOException {
		//获取Runtime类对象
		Runtime rt = Runtime.getRuntime();
		rt.exec("notepad.exe");//调用exec()方法,会自动打开一个记事本
	}
}




/*
 * 打开的记事本并在3秒后自动关闭
 * public Process exec(String command)在单独的进程中执行指定的字符串命令
 */
public class TrigonometricFunction{
	public static void main(String[] args) throws IOException, InterruptedException {
		//获取Runtime类对象
		Runtime rt = Runtime.getRuntime();
		
		//得到一个表示进程的procss对象
		Process process = rt.exec("notepad.exe");
		Thread.sleep(3000);//程序休眠3秒
		process.destroy();//杀掉进程
	}
}

5.3 math类和random类

math类

Math类是数学操作类,提供了一系列用于数学运算的静态方法,包括求绝对值、三角函数等。Math类中有两个静态常量PI和E,分别代表数学常量π和e。

由于Math类比较简单,因此初学者可以通过查看API文档来学习Math类的具体用法。

/*
 * Math类中的常用方法
 * public static int abs(int a)返回参数的绝对值
 * public static double cell(double a)返回大于参数的最小的整数
 * public static double floor(double a)返回小于参数的最大的整数
 * public static long round(double a)四舍五入
 * public static float max(float a,float b)返回两个数的较大值
 * public static double min(double a, double b)返回两个数的较小值
 * public static double random()返回一个大于等于0.0小于1.0的随机小数
 */
public class TrigonometricFunction{
	public static void main(String[] args) {
		System.out.println("计算绝对值后的结果:"+Math.abs(-1));
		System.out.println("求大于参数的最小整数:"+Math.ceil(5.6));
		System.out.println("求小于参数的最大的整数:"+ Math.floor(-4.2));
		System.out.println("对小数进行四舍五入后的结果:"+Math.round(-4.6));
		System.out.println("求两个数的最大值:"+ Math.max(2.1, -2.1));
		System.out.println("求两个数的最大值:"+ Math.min(2.1, -2.1));
		System.out.println("生成一个大于等于小于1.0的随机值"+Math.random());
	}
}

运行结果:

random类

在JDK的java.util包中有一个Random类,它可以在指定的取值范围内随机产生数字。在Random类中提供了两个构造方法,具体如下表所示。

 表中列举了Random类的两个构造方法,其中第一个构造方法是无参的,通过它创建的Random实例对象每次使用的种子是随机的,因此每个对象所产生的随机数不同。如果希望创建的多个Random实例对象产生相同序列的随机数,象时调用第二个构造方法,传入相同的种子即可。

/*
 * 使用构造方法Random()产生随机数
 * 
 */
public class TrigonometricFunction{
	public static void main(String[] args) {
		Random r = new Random();
		//随机产生10个[0~100]之间的整数
		for(int i = 0; i< 10; i++) {
			System.out.println(r.nextInt(100));
		}
	}
}

运行结果:

/*
 * 使用构造方法Random(long seed)产生随机数
 */
 
public class TrigonometricFunction{
	public static void main(String[] args) {
		Random r = new Random(13);
		//随机产生10个[0~100]之间的整数
		for(int i = 0; i< 10; i++) {
			System.out.println(r.nextInt(100));
		}
	}
}

运行结果:

 相对于Math的random()方法而言,Random类提供了更多的方法来生成各种伪随机数,不仅可以生成整数类型的随机数,还可以生成浮点类型的随机数,表中列举了Random类中的常用方法。

表中,列出了Random类常用的方法,其中,Random类的nextDouble()方法返回的是0.0和1.0之间double类型的值,nextFloat()方法返回的是0.0和1.0之间float类型的值,nextint(int n)返回的是0《包括)和指定值n(不包括)之间的值。

/*
 * Random类中的常用方法
 * public float nextFloat() 随机生成0.0~1.0之间的float小数
 * public double nextDouble() 随机生成0.0~1.0之间的double小数
 */

public class TrigonometricFunction{
	public static void main(String[] args) {
		Random r1 = new Random();
		System.out.println("产生float类型的随机数:"+ r1.nextFloat());
		System.out.println("产生0~100之间int类型的随机数:"+ r1.nextInt(100));
		System.out.println("产生double类型的随机数:"+ r1.nextDouble());
	}
}

运行结果:

5.4 包装类

在Java中,很多类的方法都需要接收引用类型的对象,此时就无法将个基本数据类型的值传入。为了解决这样的问题,JDK中提供了一系列的包装类,通过这些包装类可以将基本数据类型的值包装为引用数据类型的对象。在Java中,每种基本类型都有对应的包装类,具体如下表所示。

表中,列举了8种基本数据类型及其对应的包装类。其中,除了integer和character类,其它包装类的名称和基本数据类型的名称一致,只是类名的第一个字母需要大写。

包装类和基本数据类型在进行转换时,引入了装箱和拆箱的概念,其中装箱是指将基本数据类型的值转为引用数据类型,反之,拆箱是指将引用数据类型的对象转为基本数据类型。

案例:

/*
 * 装箱:装箱是指将基本数据类型的值转换为引用数据类型
 * 
 * 通过构造方法,完成装箱操作
 *    int-->Integer
 *    Integer(int n)
 */
public class TrigonometricFunction{
	public static void main(String[] args) {
		int a = 20;
		Integer in = new Integer(a);
		System.out.println(in);
	}
}

运行结果:

/*
 * 拆箱:拆箱是指将引用数据类型的对象转为基本数据类型
 * 
 * Integer类的方法
 * public int intValue() 以int类型返回该Integer的值
 */
public class TrigonometricFunction{
	public static void main(String[] args) {
		Integer num = new Integer(20);
		int a= 10;
		int sum = num.intValue() +a;
		System.out.println("sum="+sum);
		
	}
}

运行结果:

Integer类除了具有object类的所有方法外,还有一些特有的方法,如下表所示。

 列举了Integer的常用方法,其中的intValue()方法可以将Integer类型的值转为int类型,这个方法可以用来进行拆箱操作。

/*
 * 通过一个案例来演示parseInt()方法的使用,该案例实现了在屏幕上打印”*“矩形,其中宽和高分别设为20和10
 * 
 * Integer类得到方法:
 * public static int parInt(String s)将字符串整数,解析成int类型
 * StringBuffer的方法:
 * public String toString() 获取字符串缓冲区的内容,以字符串形式返回
 */
public class TrigonometricFunction{
	public static void main(String[] args) {
		int w = Integer.parseInt("20");
		int h = Integer.parseInt("10");
		for(int i = 0; i<h; i++) {//行数
			StringBuffer sb = new StringBuffer() ;
			for(int j = 0; j < w;j++) {
			sb.append("*");
			}
			System.out.println(sb.toString());
		}
	}
}

运行结果:

案例篇 字符串排序程序设计

	/*
	 * 字符串排序程序
	 */

public class TrigonometricFunction{
	private static final Object[] num_arr = null;
	public static void main(String args[]) {
		String numStr = "20 78 9 -7 88 36 29";
		System.out.println(numStr);
		//调用方法,实现得到一个有小到大的字符串
		numStr = sortStringNumber(numStr);
		System.out.println(numStr);
	}
	//返回一个到一个由小到大的字符串"-7 9 20 29 36 78 88"
	public static String sortStringNumber(String numStr) {
		//1.将字符串变成字符串数组
		String[] str_arr = numStr.split(" ");
		//2.将字符串数组变成int数组
		int[] num_arr = toIntArray(str_arr);
		//3.对int数组元素排序
		Arrays.sort(num_arr);
		//4.将排序后的int数组变成String
		String temp = arrayToString(num_arr);
		return temp;
	}
	
	//将int数组转换成String
	public static String arrayToString(int[] num_arr) {
		StringBuffer sb = new StringBuffer();
		//通过循环,得到每一个int元素
		for(int i =0; i<num_arr.length; i++) {
			//判断当前元素,是否为数组最后一个元素
			if(i == num_arr.length -1) {
				sb.append(num_arr[i]);
			}else {
				//不是最后一个元素
				sb.append(num_arr[i]+" ");
			}
		}
		return sb.toString();
	}
	//将String数组转换成int数组
	public static int[] toIntArray(String[] str_arr) {
		//创建int数组
		int[] arr = new int[str_arr.length];
		//把String数组元素转换成int元素,存储到int数组中
		for(int i= 0; i<str_arr.length;i++) {
			//得到每一个字符串str_arr[i]
			//把字符串数字转换成int类型 Integer.parseInt(String str)
			arr[i] = Integer.parseInt(str_arr[i]);
		}
		return arr;
		
	}
}
	

运行结果:

5.5 JDK型特性——switch语句支持字符串类型

第2章讲解switch条件语句时,演示了switch语句表达式中接收int类型的例子。在JDK7中,switch语句的表达式增加了对字符串类型的支持由于字符串的操作在编程中使用频繁,这个新特性的出现为Java编程带来了便利。

案例:

/*
 * 在JDK7中,switch语句的表达式增加了对字符串类型的支持
 */
public class TrigonometricFunction{
	public static void main(String[] args) {
		String week = "Friday";
		switch(week) {
		case"Monday":
			System.out.println("星期一");
			break;
		case"Tuesday":
			System.out.println("星期二");
			break;
		case"Wednesday":
			System.out.println("星期三");
			break;
		case"Thursday":
			System.out.println("星期四");
			break;
		case"Friday":
			System.out.println("星期五");
			break;
		case"Sturday":
			System.out.println("星期六");
			break;
		case"Sunday":
			System.out.println("星期天");
			break;
		default:
			System.out.println("您输入有误...");
			
		}
	}
}

运行结果:

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值