java面试题之堆栈引用

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;
	}
	
	
}

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值