- 1、本文档共32页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
CH_6_Java的基本类库1
public class 第0x06讲 Java的基本类库
extends Java 语言与网络编程{ };Contents;6.1 java可重用类的结构;6.1 Java语言包(java.lang);6.1.1 字符串类 ;String类;;String类的所有方法都不会改变String类对象内容,要改变String类对象的值就必须创建一个新的String对象;String a=hello;
a=java; ;String是类,在比较字符串内容时,不能用==,而应该用equals方法。String类覆盖了Object类的equals方法;例3:
String a=hello;
String b=hello;
if(a==b) {
System.out.println(相等);
}else{
System.out.println(不等);
};String a=hellojava;
String b=java;
String c=hello+b;
if(a==c){
System.out.println(相等);
}else{
System.out.println(不等);
};求子串:字符串可看做一串字符,第一个字符下标为0
substring(起始下标,截止下标)
//得到从起始下标开始,到截止下标之前的子串
String a=hello;
String b=a.substring(0,4);//得到“hell”
String c=a.substring(2,3);//得到“l”
求字符串中字符的个数(length函数)
String a=hello;
int b=a.length();//得到5
得到字符串中的某个字符(charAt函数)
charAt(下标) //得到字符串中指定下标的字符
String a =hello;
char b =a.charAt(0);//得到下标为0的字符 //得到字符h
;字符数组转换为String
char [] a={a,b,c,d};
String b=new String(a);
String转换为字符数组
String a=hello;
char [] b=a.toCharArray();
字节数组转换为String
byte [] a={65,66,67,68};
String b=new String(a);//得到ABCD
大小写转换
String s1=Hello;
String s2=s1.toUpperCase();//得到“HELLO”
String s3=s1.toLowerCase();//得到“hello”;注意:String对象作为参数传递和基本数据类型效果一样,因为它是不可改变的字符串;2. StringBuffer类;2. StringBuffer类;2. StringBuffer类;例: 利用StringBuffer类将键盘输入的数据建立一个字符串实例;习题1:下列程序输出结果是什么? ;习题2:下列程序输出结果是什么? ;习题3:下列程序输出结果是什么? ;StringBuffer可变长度的原理;3. StringBuilder类;6.1.2 数据类型类;6.1.2 数据类型类;6.1.3 Math类;三角函数:接收一个double类型的且以弧度为单位的角度值,并返回相应的运算结果,返回类型均为double型
sin(double a)
cos(double a)
tan(double a); double z=Math.sqrt(4);//开根号,结果为2
double a=Math.abs(-1);//取绝对值
double b=Math.pow(3,4);//乘方,3的4次方;Math.ceil(2.1) //返回3.0 Math.rint(2.1) //返回2.0
Math.ceil(-2.1)//返回-2.0 Math.round(2.1)//返回2
Math.floor(2
文档评论(0)