Java 的API(API: Application(应用) Programming(程序) Interface(接口))
object是所有类的父类
object里的描述方法,子类都可以去使用,所有类在创建对象的时候,最终找到的都是object这个父类
equals方法:表示其它某个对象是否与此对象“相等”。
equals方法,用于比较两个对象是否相同。
举个例子:
String str1 = new String("hellow");, String str2 = new String("hellow"); System.out.println(str1==str2); System.out.println(str1.equals(str2));
==与equals的区别:==比较的是地址是否相等,而equals则比较的是内容是否想等!
tostring方法:返回的是地址字符串
toString方法返回该对象的字符串表示
public class Test { public static void main(String args[]) { String Str = new String("WWW.RUNOOB.COM"); System.out.print("返回值 :" ); System.out.println( Str.toString() ); } }
原文:https://www.cnblogs.com/awdsjk/p/10932399.html