一周的繁忙搬砖生活终于结束了(苦逼的楼主明天还要加班:'(),把之前看到的Java内存泄漏的知识点总结了一下,分享给大家。
通俗来说 Java中所谓内存泄露就是一个对象占用的一块内存,当这个对象不在被使用时,该内存还没有被收回。之前张孝祥老师在讲反射的时候聚了一个 hashCode() 方法参数改变引起了HashSet内存泄漏。
下面的代码说明了这个例子
public class Point2
{
private int x;
private int y;
public Point2(int x, int y)
{
super();
this.x = x;
this.y = y;
}
@Override
public int hashCode()
{
final int prime = 31;
int result = 1;
result = prime * result + x;
result = prime * result + y;
return result;
}
@Override
public boolean equals(Object obj)
{
if (this == obj) return true;
if (obj == null) return false;
if (getClass() != obj.getClass()) return false;
Point2 other = (Point2) obj;
if (x != other.x) return false;
if (y != other.y) return false;
return true;
}
public int getX()
{
return x;
}
public void setX(int x)
{
this.x = x;
}
public int getY()
{
return y;
}
public void setY(int y)
{
this.y = y;
}
}
public class HashSetAndHashCode2
{
public static void main(String[] args)
{
HashSet hs2 = new HashSet();
Point2 p21 = new Point2(3, 3);
Point2 p22 = new Point2(3, 5);
hs2.add(p21);
hs2.add(p22);
p22.setY(7);
hs2.remove(p22);
System.out.println(hs2.size());
}
}
很多人认为打印出的结果是1。结果是2。为什么呢?当一个对象被存储在Hashset中后,如果修改参与计算hashcode有关的字段,那么修改后的hashcode的值就与一开始存储进来的hashcode的值不同了,这样contains无法通过hashcode找到该元素,所以无法删除。
因此,在Java开发过程中和代码检视的时候要重点关注那些长生命周期的对象,在不 使用某对象时,显示的将此对象赋空,遵循谁创建谁释放的原则,减少内存泄漏的机会。 |