第三篇Java核心技术复习

第四章:面向对象(下)

4.5异常(P72)

一、什么是异常

在Java语言中,引入了异常,以异常类的形式对这些非正常的情况进行封装,通过异常处理机制对程序运行时发生的各种问题进行处理

package Fx;
 
public class fx1 {
 
 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;
  }
 }

 

package Fx;
 
public class fx2 {
 
 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表示系统级别的错误,通常是由于JVM或系统资源不足等原因引起的。Exception表示程序级别的异常,通常是由于代码逻辑错误或输入数据错误等原因引起的。 Error类下面有两个分支:LinkageError和VirtualMachineError。LinkageError表示类加载错误,VirtualMachineError表示JVM内部错误。

Exception类下面有两个分支:RuntimeException和IOException。RuntimeException表示程序在运行时发生的异常,通常是由于代码逻辑错误或数据异常引起的;IOException表示输入输出异常,通常是由于文件读写等操作引起的。 RuntimeException类下面有一些常见的子类,如NullPointerException、ArrayIndexOutOfBoundsException、ClassCastException等,它们通常是由于代码逻辑错误或数据异常引起的。 IOException类下面也有一些常见的子类,如FileNotFoundException、SocketException等,它们通常是由于文件读写或网络操作等引起的异常。 

Throwable类中的常用方法 


 

 二、try...catch和finally(p73)

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


try{
//程序代码块
}catca(ExceptionType(Exception类及其子类 ) e){
//对ExceptionType的处理

}

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

package Fx;
 
public class fx3 {
 
 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;
  }
 }

 把2改成0后出现异常打印了一个异常信息

package Fx;
 
public class fx4 {
 
 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;
  }
 }

 

 


三、thr ows关键字(p74)

Java中允许在方法的后面使用throws关键字对外声明该方法有可能发生的异常,这样调用者在谓用方法时,就明确地知道该方法有异常,井且必须在程序中对异常进行处理,否则编译无法通过。

throws关键字声明抛出异常的语法格式如下:
修饰符 返回值类型 方法名 ([参数1,参数2....])throws ExceptionTypel[,ExceptionType2.....]{

}

throws关键字需要写在方法声明的后面 

package Fx;
 
public class fx5 {
 
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;
}
}

 

 


四、运行时异常和编译时异常(p75)

  1. 运行时异常 运行时异常是指在程序运行时发生的异常,通常是由于代码逻辑错误或数据异常引起的。运行时异常是RuntimeException类及其子类的实例。运行时异常不需要在代码中声明或捕获,通常由JVM自动抛出并终止程序运行。常见的运行时异常有:NullPointerException、IndexOutOfBoundsException、ClassCastException等。
  2. 代码如下所示:
    int[ ] arr=new int[5];

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

  3. 编译时异常 编译时异常是指在编译程序时发生的异常,通常是由于语法错误或类型不匹配引起的。编译时异常是Exception类及其子类的实例,必须在代码中显式声明或捕获。常见的编译时异常有:IOException、SQLException等。
  4. 异常处理 异常处理是Java中非常重要的机制,能够帮助开发人员更好地控制程序中的异常。对于运行时异常,可以选择处理或不处理,如果不处理,程序会由JVM自动抛出并终止运行;如果需要处理,可以使用try...catch语句块捕获并处理异常。对于编译时异常,必须在代码中显式声明或捕获,否则代码无法通过编译。 总之,运行时异常和编译时异常是Java中异常处理机制的两个重要概念,开发人员应该了解它们的区别和处理方式,以便更好地控制程序中的异常。

 


五、自定义异常 (p76)

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

  1. 自定义异常类 自定义异常类可以继承Exception类或RuntimeException类,通常建议继承Exception类。自定义异常类应该包含以下内容:
  • 构造函数:用于创建异常对象并初始化异常信息;
  • getMessage方法:用于获取异常信息;
  • toString方法:用于返回异常的字符串表示形式。 例如,我们可以定义一个自定义异常类MyException:
nt 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

 


六、 访问控制 (p77)

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

 

  • private:私有访问控制符,只能在类内部访问;
  • default:默认访问控制符,只能在同一个包内部访问;
  • protected:受保护访问控制符,同一个包内部和子类中可以访问;
  • public:公共访问控制符,任何地方都可以访问。

 

 

  • 在使用default访问控制符时,应该尽量将相关的类和接口放在同一个包中,以避免不必要的访问。 总之,访问控制是Java中重要的语言特性之一,能够帮助开发人员限制类、接口、变量和方法的访问范围,提高程序的安全性和可维护性。开发人员应该了解各种访问控制符的特点和使用注意事项,以便更好地应用访问控制。

第五章

一、API_类的初始化

类的初始化(p78)

类的初始化
API指的是应用程序,编程接口

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

进行初始化
1、使用字符串常量直接初始化一个string对象

String  str1="abc";
2、使用string的构造方法初始化,字符串对象string的构造方法

String()    创建一个内容为空的字符串
String(String value)      根据指定的字符串内容创建对象
String(char[ ] value)   根据指定的字符串数组创建对象

 

  public class Test2 {
   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);
   }
  }


 

二、API_类的常见操作

5.1String类和SreingBuffer类

1、String类的常见操作(p79)

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());
  }
 }
 

 

 程序开发中,用户输入数据时经常会有一些错误和空格,这时可以使用String类的replace0和trim0方法,进行字符串的替换和去除空格操作。

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));
 
 }
 
}

 

在String类中针对字符串的截取和分割操作提供了两个方法,其中,substring0方法用于截取字符串的一部分,split0方法可以将字符串按照某个字符进行分割 

//字符串的截取和分割操作
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] +","); 
 }
  }
 }
}

 

 String字符串在获取某个字符时,会用到字符的索引,当访问字符串中的字符时,如果符的索引不存在,则会发生StringIndexOutOfBoundsException ( 字符串角标越界异常)

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

 

 


2、StringBuffer类 (p80)


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

针对添加和删除字符的操作,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());
	 }
}

 

 


任务:通过一个记录一个子串在整串出现的次数(p81)

/*
 * 记录一个子串在整串中出现的次数
 * 思路:
 *  1.定义一个整串,定义一个子串
 *  2.获取子串在整串中出现的次数
 */
public class Test1{
 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;
 }
}

 

 


 

System类和Runtime类

1、System类(p82)

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);
   
  }
 }
}

 

 

  • currentTTimeMillis()

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 Test2{
   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]);
    }
   }
  }

 

 


 

2、Runtime类(p83)

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 Test2{
   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命令同样的效果
   */ 
  import java.io.IOException;
  public class Test2{
   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 Test2{
 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.3Math类和Random类
1、Math类(p84)


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 Test2{
 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());
 }
}

 

2、Random类(P85)

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

 

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

 

第一个构造方法 

import java.util.Random;
/*
 * 使用构造方法Rundom()产生随机数
 * public int nextInt(int n)0-n之间的随机整数,包含0,不包含n
 */
 
public class Test1 {//创建类
	
	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));
		}
	}
}

 

 第二个构造方法

import java.util.Random;
/*
 * 使用构造方法Rsndom(long seed)产生随机数
 */
public class Test2 {
 
	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类中的常用方法
 * public float nexFloat()随机生成0.0 -1.0之间的float小数
 * public double nextDouble()随机生成0.0 -1.0之间的double小数
 */
public class Test1 {//创建类
 
	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 包装类(p86)

在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());
  }
 }
}

 


 任务:字符串排序程序设计(p87)

 /*
  * 字符串排序程序
  */
 
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语句支持字符串类型(P88)

stringVal是一个字符串类型的变量,用于控制switch语句的分支。case后面的值是一个字符串字面量,用于与stringVal比较。如果stringVal与某个case后面的值相等,则执行相应的代码块,否则执行default代码块。 2. 注意事项 使用switch语句支持字符串类型时,需要注意以下几点:

  • case后面的值必须是一个字符串字面量,不能是一个变量或表达式;
  • switch语句中的字符串比较是通过equals方法进行的,而不是通过==运算符进行的;
  • 与其他类型的switch语句一样,每个case后面必须跟一个break语句,否则会继续执行下一个case分支,直到遇到break语句或switch语句结束。

 

/*
 * 在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("您输入有误...");
   
  }
 }
}

 Java中switch语句支持字符串类型是一个很方便的特性,能够使代码更加简洁和易于阅读。

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

云玩java.dog️

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值