java中常用的包、类、以及包中常用的类、方法、属性----lang包 (2)

equals(Object obj)
          指示其他某个对象是否与此对象“相等”。

 

protected  void

 

finalize()
          当垃圾回收器确定不存在对该对象的更多引用时,由对象的垃圾回收器调用此方法。

 

Class<?>

 

getClass()
          返回此 Object 的运行时类。

 

int

 

hashCode()
          返回该对象的哈希码值。

 

void

 

notify()
          唤醒在此对象监视器上等待的单个线程。

 

void

 

notifyAll()
          唤醒在此对象监视器上等待的所有线程。

 

String

 

toString()
          返回该对象的字符串表示。

 

void

 

wait()
          在其他线程调用此对象的 notify() 方法或 notifyAll() 方法前,导致当前线程等待。

 

void

 

wait(long timeout)
          在其他线程调用此对象的 notify() 方法或 notifyAll() 方法,或者超过指定的时间量前,导致当前线程等待。

 

void

 

wait(long timeout, int nanos)
          在其他线程调用此对象的 notify() 方法或 notifyAll() 方法,或者其他某个线程中断当前线程,或者已超过某个实际时间量前,导致当前线程等待。

 

 

        public final class String extends Object implements Serializable, Comparable<String>, CharSequence    

char

 

charAt(int index)
          返回指定索引处的 char 值。

 

int

 

compareTo(String anotherString)
          按字典顺序比较两个字符串。

 

boolean

 

contains(CharSequence s)
          当且仅当此字符串包含指定的 char 值序列时,返回 true。

 

boolean

 

endsWith(String suffix)
          测试此字符串是否以指定的后缀结束。

 

boolean

 

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zzxgfg.html