所有java类的父类
。类对象型
class anything{
public void test(){}
}
public class MyApplication1{
public static void main(String args[]){
anything obj = new anything();
Class class1 = obj.getClass();
System.out.println(class1);
}
}
/*
*运行结果:
*class demo.anything
*/
哈希码值
对象的地址
或字符串
或数字
使用hash算法计算出来的int类型的数值。//在上面代码的基础之上可以直接调用 hashCode()
System.out.println(obj.hashCode());
/*
*366712642
*/
字符串
表示覆盖
该方法直接调用:
package demo;
class student{
String name;
int age;
student(String name,int age){
this.name = name;
this.age = age;
}
String getName(){
return name;
}
int getAge(){
return age;
}
void setter(String name,int age){
this.name = name;
this.age = age;
}
}
public class MyApplication1{
public static void main(String args[]){
student s1 = new student("wang",20);
System.out.print(s1.toString());
}
}
/*
*demo.student@15db9742
*/
对不满足的结果可以进行重写:
package demo;
class student{
String name;
int age;
student(String name,int age){
this.name = name;
this.age = age;
}
String getName(){
return name;
}
int getAge(){
return age;
}
void setter(String name,int age){
this.name = name;
this.age = age;
}
public String toString(){
return name+":"+age;
}
}
public class MyApplication1{
public static void main(String args[]){
student s1 = new student("wang",20);
System.out.print(s1.toString());
}
}
/*
*wang:20
*/
对象地址
是否相同。对象内容
是否相同public boolean equals(Object obj){
return (this==obj);
}
Q:
equals 和 == 的区别 ???
A:
equals比较的是两个对象值是否相等,如果没有被重写,比较的是对象的引用地址是否相同。而==用于比较基本数据类型的值是否相等,或比较两个对象的引用地址是否相等;
public static double sin(double a)//正弦
public static double cos(double a)//余弦
public static double tan(double a)//正切
public static double asin(double a)//反正弦
public static double acos(double a)//反余弦
public static double atan(double a)//反正切
public static double toRadians(double angdeg)//将角度转换为弧度
public static double toDegrees(double angrad)//将弧度转换为角度
public static double exp(double a)//e的a次方
public static double log(double a)//lna
public static double log10(double a)//底数为10的对数
public static double sqrt(double a)//a的平方根
public static double cbrt(double a)//a的立方根
public static double pow(double a,double b)//a的b次方
public static double ceil(double a)//大于等于参数的最小整数
public static double floor(double a)//小于等于参数的最大整数
public static double rint(double a)//与参数最接近的整数(若相等,取偶数)
public static int round(float a)//加上0.5后与参数最接近的整数
public static double max(double a,double b)//a、b的最大值
public static double min(double a,double b)//a、b的最小值
public static double abs(double a)//绝对值
Math.random()//产生[0,1)的double数
(int)(Math.random()*100)//产生[0,100)的int数
50+(int)(Math.random()*100)//产生[50,150)的int数
(char)('a'+Math.random()*('z'-'a'+1))//产生a~z之间的字符
(char)(cha1+Math.random()*(cha2-cha1+1))//产生cha1~cha2之间的字符
除了Math.random()方法,Java还提供了一种可以获取随机数的方式,那就是java.util.Random类。
public int nextInt()
public int nextInt(int n)
public double nextDouble()
......
基本数据类型(8种
)与包装类的对应关系如下:
常量
,创建后不可改变 (重要!!!)
字符串池
中,可以共享。length()//返回字符串长度
charAt(int index)//返回某个位置的字符
contains(String str)//判断是否包含某个子字符串
indexOf()//返回子字符串首次出现的位置
trim()//去掉字符串前后空格
toUpperCase()//转大写
toLowerCase()//转小写
statsWith(str)//判断是否str开头
endsWith(str)//判断是否str结尾
注意区分:
可变长字符串
效率慢、线程安全
效率快、线程不安全
追加
str字符串附:更加详细的内容,请访问:Java8API文档
https://docs.oracle.com/javase/8/docs/api/
好了,看到这里基本上这章就结束啦。如果您觉得这期内容对你有帮助的话,欢迎点赞,评论,收藏,谢谢啦。