《Java面向对象程序设计(第4版)》课件chapter07 Java实用包.ppt
- 【下载声明】
1. 本站全部试题类文档,若标题没写含答案,则无答案;标题注明含答案的文档,主观题也可能无答案。请谨慎下单,一旦售出,不予退换。
2. 本站全部PPT文档均不含视频和音频,PPT中出现的音频或视频标识(或文字)仅表示流程,实际无音频或视频文件。请谨慎下单,一旦售出,不予退换。
3. 本页资料《《Java面向对象程序设计(第4版)》课件chapter07 Java实用包.ppt》由用户(momomo)主动上传,其收益全归该用户。163文库仅提供信息存储空间,仅对该用户上传内容的表现方式做保护处理,对上传内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知163文库(点击联系客服),我们立即给予删除!
4. 请根据预览情况,自愿下载本文。本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
5. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007及以上版本和PDF阅读器,压缩文件请下载最新的WinRAR软件解压。
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- Java面向对象程序设计第4版 Java面向对象程序设计第4版课件chapter07 Java实用包 Java 面向 对象 程序设计 课件 chapter07 实用
- 资源描述:
-
1、教学目标教学目标nJava 程序设计中经常使用的类nMathnStringnStringBuildernStringTokenizern泛型集合nCollection接口与Iterator迭代器nList(ArrayList、LinkedList、Vector)和Enumeration类nCollections的算法nHashSet与TreeSetnMapn Using The package And Classes Supplied With java 包名 类 包名 类 java.langString,StringBuffer StringBuilder javax.swing JButt
2、on Wrapper classes JLabel JTextfield .java.util Calendar java.io InputStream Date OutputStream 泛型类java.text DateFormatjava.awt Graphics Button Label TextField7.1 Math类类 njava.lang.Math是标准的数学函数类:封装了一些数学函数和常量如:三角函数、指数函数、随机数函数等。njava.lang.Math类是final型的,不能被子类化或实例化,nMath类的所有方法和常量是静态的。public class MathDem
3、opublic static void main(String args)System.out.println(Math.E=+Math.E);/输出常量eSystem.out.println(Math.round(Math.E)=+Math.round(Math.E);/四舍五入取整System.out.println(Math.PI=+Math.PI);/输出常量p/输出大于等于e的最小双精度整数System.out.println(ceil(E)=+Math.ceil(Math.E);/输出小于等于e的最大双精度整数System.out.println(floor(E)=+Math.fl
4、oor(Math.E);/将双精度值p 转化为一个整数值,输出double型System.out.println(rint(PI)=+Math.rint(Math.PI);System.out.println(lnE=+Math.log(Math.E);/计算e的自然对数值System.out.println(sin(pi/4)=+Math.sin(Math.PI/4);/计算p/4的正弦值System.out.println(Math.random();/产生0到1之间的double型数System.out.println(int)(100*Math.random()+1);/产生1到100
5、之间的整数 7.2 字符串类字符串类String nStringnSeries of characters treated as single unitnMay include letters,digits,etc.nObject of class StringnWhen String object is created,its contents cannot change ni.e.,constant strings njava.lang.String7.2 字符串类字符串类Stringn7.2.1 String的构造函数n7.2.2 String的方法7.2.1 String构造函数构造函
6、数 构造函数用途String()默认构造函数,创建一个String实例,该实例中不包含字符String(bytebytes)创建一个被byte数组初始化的字符串String(bytebytes,intoffset,intlength)创建一个被byte数组的子区域所初始化的字符串。参数offset指定子区域开始的下标(注意:第一个字符的下标为0),参数length指定所使用byte的长度String(charvalue)创建一个被字符数组初始化的字符串String(charvalue,intoffset,intcount)创建一个被字符数组的子区域所初始化的字符串。参数offset指定子区域开
7、始的下标(注意:第一个字符的下标为0),参数count指定所用字符的个数。String(Stringoriginal)构造一个String对象,该对象包括了与String对象original相同的字符序列表表7-1String类的常见构造函数类的常见构造函数n例7-2的程序演示了String类的常见的6个构造函数的使用。/StringConstructors.javaimport javax.swing.*;public class StringConstructors public static void main(String args)char charArray=b,i,r,t,h,d
8、,a,y;byte byteArray=(byte)n,(byte)e,(byte)w,(byte),(byte)y,(byte)e,(byte)a,(byte)r;String s=new String(hello);7.2.1 String构造函数(续构造函数(续)7.2.1 String构造函数(续构造函数(续)String s1=new String();String s2=new String(s);String s3=new String(charArray);String s4=new String(charArray,6,3);String s5=new String(byte
9、Array,4,4);String s6=new String(byteArray);String output=s1=+s1+ns2=+s2+ns3=+s3+ns4=+s4+ns5=+s5+ns6=+s6;JOptionPane.showMessageDialog(null,output,String类构造函数的使用,JOptionPane.INFORMATION_MESSAGE);System.exit(0);分别调用String类的六个构造函数7.2.2 String的方法的方法 方法用途char charAt(intindex)获取字符串中某一指定位置(从0开始编号)的字符int co
10、mpareTo(Stringstr)与str进行字符串比较。若相等,则返回0;如小于,则返回一个负数;若大于,则返回一个正数int compareToIgnoreCase(Stringstr)比较str字符串。注意比较时不区分字符的大小写String concat(Stringstr)连接两个String对象,并返回一个新的String对象,该对象包含两个源字符串中的字符boolean endsWith(Stringsuffix)判断调用方法的字符串是否以参数suffix所对应的字符串为结尾boolean equals(String str)判断调用方法的字符串是否与参数str所对应的字符串相
11、等表7-2String类的常用方法7.2.2 String方法(续)方法(续)boolean equalsIgnoreCase(StringanotherString)判断调用方法的字符串是否与参数anotherString所对应的字符串相等,判断时不区分字符的大小写void getChars(intsrcBegin,intsrcEnd,chardst,intdstBegin)以参数srcBegin作为起始下标,以参数srcEnd-1作为结束下标,从调用方法的字符串中取子串复制到以参数dstBegin为起始下标的字符数组中int indexOf(Stringstr),int indexOf(c
12、har c)定位参数str在字符串中第一次出现的位置int indexOf(Stringstr,intfromIndex)以参数fromIndex为起始索引,定位参数str在字符串中第一次出现的位置int lastIndexOf(Stringstr)定位参数str在字符串中最后一次出现的位置int lastIndexOf(Stringstr,intfromIndex)以参数fromIndex为起始索引,进行反向查找第一次出现str的位置7.2.2 String方法(续)方法(续)int length()确定字符串的长度replace(charoldChar,charnewChar)返回一个新的
13、String对象,在该对象中,字符串中的参数oldChar所指定的字符均被参数newChar所指定的字符替代String substring(intbeginIndex)从字符串中截取从参数beginIndex所指定的下标开始,到字符串结束的一个子字符串String substring(intbeginIndex,intendIndex)从字符串中截取从参数beginIndex所指定的下标开始,到endIndex-1指定的下标结束的一个子字符串String toLowerCase()将字符串中的所有大写字母改为小写,并返回该字符串String toUpperCase()将字符串中的所有小写字母
14、改为大写,并返回该字符串String trim()将出现在字符串开头和结尾的空格删除,并返回该字符串n例7-3 String类的length、charAt和getChars方法的使用/StringMiscellaneous.javaimport javax.swing.*;public class StringMiscellaneous public static void main(String args)String s1=hello there;char charArray=new char 5;String output=s1:+s1;output+=nLength of s1:+s1
15、.length();output+=nThe string reversed is:;for(int count=s1.length()-1;count=0;count-)output+=s1.charAt(count)+;s1.getChars(0,5,charArray,0);7.2.2 String的方法(续)的方法(续)7.2.2 String方法(续)方法(续)output+=nThe character array is:;for(int count=0;count charArray.length;count+)output+=charArray count;JOptionPan
16、e.showMessageDialog(null,output,String类的length、charAt和getChars方法的使用,JOptionPane.INFORMATION_MESSAGE);System.exit(0);下面的例子通过使用String类的equals、equalsIgnoreCase、compareTo方法来进行字符串的比较。n例7-4字符串的比较7.2.2 String方法(续)方法(续)7.2.2 String方法(续)方法(续)/StringCompare.javaimport javax.swing.JOptionPane;public class Stri
17、ngCompare public static void main(String args)String s1=new String(hello);String s2=goodbye;String s3=Happy Birthday;String s4=happy birthday;String output=s1=+s1+ns2=+s2+ns3=+s3+ns4=+s4+n;7.2.2 String方法(续)方法(续)if(s1.equals(hello)output+=s1 equals hellon;else output+=s1 does not equal hellon;if(s3.e
18、qualsIgnoreCase(s4)output+=s3 equals s4n;else output+=s3 does not equal s4n;调用String类的equals方法判断字符串是否相等调用String类的equalsIgnoreCase方法在不区分大小写的情况下判断两字符串是否相等7.2.2 String方法(续)方法(续)output+=pareTo(s2)is +pareTo(s2)+pareTo(s1)is +pareTo(s1)+pareTo(s1)is +pareTo(s1)+pareTo(s4)is +pareTo(s4)+pareTo(s3)is +pare
19、To(s3)+n;JOptionPane.showMessageDialog(null,output,字符串的比较,JOptionPane.INFORMATION_MESSAGE);System.exit(0);调用String类的compareTo方法进行两字符串的大小比较n下面的例子通过调用String类的indexOf和lastIndexOf方法来完成定位字符串中的字符和子字符串。n例7-5 字符串检索7.2.2 String方法(续)方法(续)7.2.2 String方法(续)方法(续)/StringIndexMethods.javaimport javax.swing.*;publi
20、c class StringIndexMethods public static void main(String args)String letters=abcdefghabcdefgh;String output=c is located at index +letters.indexOf(c);output+=na is located at index +letters.indexOf(a,1);output+=n$is located at index +letters.indexOf($);调用String类的indexOf方法定位某个字符在字符串中第一次出现的位置7.2.2 St
21、ring方法(续)方法(续)/String letters=abcdefghabcdefgh;output+=nLast c is located at index +letters.lastIndexOf(c);output+=nLast a is located at index +letters.lastIndexOf(a,10);output+=nLast$is located at index +letters.lastIndexOf($);output+=ndef is located at index +letters.indexOf(def);output+=ndef is l
22、ocated at index +letters.indexOf(def,7);output+=nhello is located at index +letters.indexOf(hello);调用lastIndexOf方法定位某个字符在字符串中最后一次出现的位置 调用indexOf方法定位某个子字符串在字符串中第一次出现的位置7.2.2 String方法(续)方法(续)/String letters=abcdefghabcdefgh;output+=nLast def is located at index +letters.lastIndexOf(def);output+=nLast
23、def is located at index +letters.lastIndexOf(def,25);output+=nLast hello is located at index +letters.lastIndexOf(hello);JOptionPane.showMessageDialog(null,output,字符串检索,JOptionPane.INFORMATION_MESSAGE);System.exit(0);调用lastIndexOf方法定位某个子字符在字符串中最后一次出现的位置n例7-6 字符串截取通过调用String类的substring方法来实现在字符串中提取一个子
24、字符串7.2.2 String方法(续)方法(续)7.2.2 String方法(续)方法(续)/SubString.javaimport javax.swing.*;public class SubString public static void main(String args)String letters=abcdefghabcdefgh;String output=Substring from index 10 to end is +letters.substring(10)+n;output+=Substring from index 3 up to 6 is +letters.su
25、bstring(3,6)+;JOptionPane.showMessageDialog(null,output,字符串截取,JOptionPane.INFORMATION_MESSAGE);System.exit(0);调用substring方法在字符串中提取一个子字符串将任意类型的数据转换成将任意类型的数据转换成String类型的方类型的方法法 String valueOf methodsstaticstatic String valueOf valueOf(type b)Returns the string representation of the type argument.例子:bo
展开阅读全文