pr100.java
上传用户:fbh598
上传日期:2007-07-05
资源大小:5960k
文件大小:0k
源码类别:

Java编程

开发平台:

Unix_Linux

  1. // PR 100
  2. // Second call to hashcode causes SEGV when dynamically linking.
  3. public class pr100
  4. {
  5.     public static void main(String[] args) {
  6. pr100 ht = new pr100();
  7. System.err.println(ht.hashCode());
  8. System.err.println(ht.getClass().hashCode());
  9.     }
  10. }