avatar
J*e
1
Write a special singleton class, the class has one integer field,
make sure only one instance of this class will be instantiated for
the same value of the integer field.
以下是我写的, 但是有个问题,这样instance不是static, getInstance()因为用到
instance也不能是static,可以吗?这样解对吗?另外,当singleton object destruct的时候,应该把 value从hashmap里删除。怎么实现这个呢?用finalize()?
import java.util.HashMap;
public class SingletonInteger {
private Integer value;
private SingletonInteger instance;
private static HashMap values;
private SingletonInteger(Integer val)
{
value=val;
}

public synchronized SingletonInteger getInstance(Integer v)
{
if(values==null)
{
values = new HashMap();
}

if(values.containsKey(v)==false)
{
instance = new SingletonInteger(v);
values.put(v,instance);
}

return values.get(v);
}
}
avatar
g*d
2
申的personal, 没有instant approve,有可能打电话reconsider吗?多谢
UPDATES:刚收到邮件说“We were unable to approve your application based on
the information you provided. You will receive additional information on
your application request via U.S. Mail in 7-10 days.”
请问这是啥意思,版上有人了解吗?
avatar
r*e
3
WSN的床垫.jpg
avatar
f*5
4
why you need instance here?
simply remove it and make the getInstance static
public static RemoveInstance(int i)
{
values[i].~SingletonInteger();
values.erase(i);
}

destruct的时候,应该把 value从hashmap里删除。怎么实现这个呢?用finalize()?

【在 J***e 的大作中提到】
: Write a special singleton class, the class has one integer field,
: make sure only one instance of this class will be instantiated for
: the same value of the integer field.
: 以下是我写的, 但是有个问题,这样instance不是static, getInstance()因为用到
: instance也不能是static,可以吗?这样解对吗?另外,当singleton object destruct的时候,应该把 value从hashmap里删除。怎么实现这个呢?用finalize()?
: import java.util.HashMap;
: public class SingletonInteger {
: private Integer value;
: private SingletonInteger instance;
: private static HashMap values;

avatar
b*g
5
还没有结果recon什么啊,这个很多要pending的

【在 g****d 的大作中提到】
: 申的personal, 没有instant approve,有可能打电话reconsider吗?多谢
: UPDATES:刚收到邮件说“We were unable to approve your application based on
: the information you provided. You will receive additional information on
: your application request via U.S. Mail in 7-10 days.”
: 请问这是啥意思,版上有人了解吗?

avatar
s*1
6
求购物链接。。。
avatar
p*7
7
我等了三个工作日批的

★ 发自iPhone App: ChineseWeb 7.8

【在 g****d 的大作中提到】
: 申的personal, 没有instant approve,有可能打电话reconsider吗?多谢
: UPDATES:刚收到邮件说“We were unable to approve your application based on
: the information you provided. You will receive additional information on
: your application request via U.S. Mail in 7-10 days.”
: 请问这是啥意思,版上有人了解吗?

avatar
s*d
8
要买品质好的,不然会漏气,睡觉前是D,早上起来全变成A了

【在 s*******1 的大作中提到】
: 求购物链接。。。
avatar
g*d
9
估计悬,最近半年5个hard pull,而且分数也不低。万一不过,有人reconsider成功过
吗?蛮喜欢这个酒店集团的,不过听说US BANK有点夸张。
avatar
l*r
10
。。。。。。。。。。

【在 r*********e 的大作中提到】
: WSN的床垫.jpg
avatar
b*g
11

我是recon过的

【在 g****d 的大作中提到】
: 估计悬,最近半年5个hard pull,而且分数也不低。万一不过,有人reconsider成功过
: 吗?蛮喜欢这个酒店集团的,不过听说US BANK有点夸张。

avatar
i*g
12
不用担心. 我半年也5个hard, 其中的两个还是一周内的, 一样过了. 同喜欢他家酒店

【在 g****d 的大作中提到】
: 估计悬,最近半年5个hard pull,而且分数也不低。万一不过,有人reconsider成功过
: 吗?蛮喜欢这个酒店集团的,不过听说US BANK有点夸张。

avatar
g*d
13
多谢,要我提供额外信息,真是麻烦啊,呵呵

【在 i********g 的大作中提到】
: 不用担心. 我半年也5个hard, 其中的两个还是一周内的, 一样过了. 同喜欢他家酒店
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。