Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在从事Android开发。我偶然发现了 Object 类。我阅读了文档,并没有太多说明课程的目的。我认为当应用程序有多个线程时它会派上用场。有没有其他地方可以有益?谁能告诉我什么时候使用它以及使用它的好处?
对象类来自java.lang.Object. Object 是Java 中所有对象的超类。
java.lang.Object
我们一直使用的 Object 类最常用的方法是equals()
例如:
String s1 = "Hello"; String s2 = "Hello"; if (s1.equals(s2){ }
上面的例子很简单..我们wait() , notify() 在使用线程时使用,它在Android中运行良好,虽然我们有Async任务给我们带来无痛线程.. finalise()是GC调用的方法来垃圾收集没有对象的对象参考一下。。
wait() , notify()
finalise()