public class PoolDemo {
public static void main(String[] args) {
int a = 2;
String s = "hello";
Point p = new Point(1, 2);
Collection c = new ArrayList();
c.add(p);
test(a, s, p, c);
System.out.println("a:" + a);
System.out.println("s:" + s);
System.out.println("p:" + p);
System.out.println("c:" + c);
}
private static void test(int a, String s, Point p, Collection c) {
a++;
s = s + "hello";
p.setX(2);
p = new Point(5, 6);
c.clear();
c.add(p);
p.setX(a);
c = new ArrayList();
c.add(new Point(7, 8));
}
}
package object;
/*
* 使用当前类作为集合元素测试集合相关方法
*
*/
public class Point {
private int x;
private int y;
public Point(int x, int y) {
super();
this.x = x;
this.y = y;
}
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;
}
/**
* 通常我们使用一个类的toString方法,就
* 应当重写这个方法(java API提供的类大部分
* 都已经重写了,无需我们重写).
* 返回的字符串没有严格的格式要求,但应当
* 包含这个对象的属性信息,便于通过返回的
* 字符串了解当前对象的属性信息.
*/
public String toString() {
//(1,2)
return "(" + x + "," + y + ")";
}
/**
* 当我们需要使用某个类的equals方法判断
* 内容是否相同时,就应当重写这个方法.
* 注:java API提供的类基本都重写过了.
*/
// public boolean equals(Object obj) {
// if(obj == null) {
// return false;
// }
// if(obj == this) {
// return true;
// }
// if(obj instanceof Point) {
// Point p = (Point)obj;
// return this.x==p.x&&this.y==p.y;
//
// }
// return false;
// }
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + x;
result = prime * result + y;
return result;
}
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
Point other = (Point) obj;
if (x != other.x)
return false;
if (y != other.y)
return false;
return true;
}
}
java面试题之堆栈引用
最新推荐文章于 2024-03-13 03:58:28 发布