关于今天面试回答的不好的两个问题(垃圾回收机制和对象的排序)

今天参加了一场面试,应该也算是我第一次正儿八经的技术面试。

感觉表现不是太好,问的虽然大多是关于基础的问题,但比较深入具体。而我花绝大多数时间复习的web方面的东西却几乎没有涉及到,这也算是我复习复习方向的一个失误吧。

进入正题,有两个没有回答好的问题:

Question1:  垃圾回收机制,包括具体叙述回收的时机。

      这道题应该不算难,我回答的是对象不再有引用时有可能会被系统自动回收。  显然,这不够具体,应该是Java虚拟机在空闲时间以不定时的方式动态回收无任何引用的对象占据的内存空间。 回收的是对象占据的空间。同时,可以调用

System.gc()
Runtime.getRuntime().gc()  
方法用于显式通知JVM可以进行回收。
但真正垃圾回收机制具体在什么时间点开始发生动作这同样是不可预料的,这和抢占式的线程在发生作用时的原理一样。

Question2:如何按照对象中的属性对对象进行排序
/*** Java对象排序的3种实现方式*/ 
public  class  TestObjectSort {
/**
* @param args
*/
public  static  void  main(String[] args) {
// TODO Auto-generated method stub
  /**方法1
 
* 使用 Collections.sort(List, Comparator)实现,必须实现Comparator的一个比较器并复写compare() 方法
 
  */
 
    Person1[] ps =  new  Person1[]{ new  Person1( "p0" , 0 ),
new  Person1( "p1" , 3 ),
new  Person1( "p2" , 5 ),
new  Person1( "p3" , 4 ),
new  Person1( "p4" , 8 ),
new  Person1( "p5" , 6 ),
new  Person1( "p6" , 7 ),
new  Person1( "p7" , 1 ),
new  Person1( "p8" , 2 ),
new  Person1( "p9" , 9 )};
List<Person1> pl =  new  ArrayList<Person1>();
for ( int  i =  0 ; i <  10 ; i++){
System.out.print(ps[i].getAge());
pl.add(ps[i]);
}
System.out.println( "n使用Collections.sort(List, Comparator)类来比较:" );
long  l1 = System.currentTimeMillis();
Collections.sort(pl,  new  MyComparator());
System.out.println( "time: "  + (System.currentTimeMillis() - l1));
for (Iterator it = pl.iterator(); it.hasNext();){
Person1 p = (Person1) it.next();
System.out.print(p.getAge());
}
 
/**方法2
 
* 使用Arrays.sort(Object[])实现,对象必须实现Comparable接口并复写compareTo() 方法
 
  */
 
    Person2[] ps2 =  new  Person2[]{ new  Person2( "p0" , 0 ),
new  Person2( "p1" , 3 ),
new  Person2( "p2" , 5 ),
new  Person2( "p3" , 4 ),
new  Person2( "p4" , 8 ),
new  Person2( "p5" , 6 ),
new  Person2( "p6" , 7 ),
new  Person2( "p7" , 1 ),
new  Person2( "p8" , 2 ),
new  Person2( "p9" , 9 )};
System.out.println( "n使用Arrays.sort(Object[])类来比较:" );
long  l2 = System.currentTimeMillis();
Arrays.sort(ps2);
System.out.println( "time: "  + (System.currentTimeMillis() - l2));
 
for ( int  i =  0 ; i <  10 ; i++){
System.out.print(ps2[i].getAge());
}
     /**方法3
 
  * 使用Collections.sort(List)实现,对象必须实现Comparable接口并复写compareTo()方法
 
  */
 
    Person2[] ps3 =  new  Person2[]{ new  Person2( "p0" , 0 ),
new  Person2( "p1" , 3 ),
new  Person2( "p2" , 5 ),
new  Person2( "p3" , 4 ),
new  Person2( "p4" , 8 ),
new  Person2( "p5" , 6 ),
new  Person2( "p6" , 7 ),
new  Person2( "p7" , 1 ),
new  Person2( "p8" , 2 ),
new  Person2( "p9" , 9 )};
List<Person2> pl3 =  new  ArrayList<Person2>();
for ( int  i =  0 ; i <  10 ; i++){
pl3.add(ps3[i]);
}
System.out.println( "n使用Collections.sort(List)类来比较:" );
Collections.sort(pl3);
for (Iterator it = pl3.iterator(); it.hasNext();){
Person2 p = (Person2) it.next();
System.out.print(p.getAge());
}
}
}
/** * 方法1需要
 
  */
 
class  MyComparator  implements  Comparator{
public  int  compare(Object o1, Object o2){
Person1 p1 = (Person1)o1;
Person1 p2 = (Person1)o2;
if (p1.getAge() < p2.getAge()){
return  - 1 ;
} else  if (p1.getAge() == p2.getAge()){
return  0 ;
} else {
return  1 ;
}
}
 
}
 
   /**
 
  * 方法1需要
 
  */
 
class  Person1{
private  String name;
private  int  age;
 
public  Person1(){}
public  Person1(String name,  int  age) {
super ();
this .name = name;
this .age = age;
}
public  String getName() {
return  name;
}
public  void  setName(String name) {
this .name = name;
}
public  int  getAge() {
return  age;
}
public  void  setAge( int  age) {
this .age = age;
}
 
}
/**
 
*方法 2,3需要
 
  */
 
class  Person2  implements  Comparable{
private  String name;
private  int  age;
 
public  Person2(){}
public  Person2(String name,  int  age) {
super ();
this .name = name;
this .age = age;
}
public  String getName() {
return  name;
}
public  void  setName(String name) {
this .name = name;
}
public  int  getAge() {
return  age;
}
public  void  setAge( int  age) {
this .age = age;
}
 
public  int  compareTo(Object o){
Person2 p = (Person2)o;
if ( this .age < p.age){
return  - 1 ;
} else  if ( this .age == p.age){
return  0 ;
} else {
return  1 ;
}
}
 
}
以上只是一部分,提醒一下自己,有些具体实现是要理清楚的,细节决定成败。

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值