Redian新闻
>
Sero 用户在bestbuy买LG marquee
avatar
Sero 用户在bestbuy买LG marquee# PDA - 掌中宝
e*d
1
Sorry for no Chinese input.
I failed in Bloomberg on-site interview for a senior software development position. The following two questions may be helpful
1. In which cases can the destructor of a class not be called?
2. In a try block, we allocate some memory ; then an exception is thrown.
How can we get the allocated memory released before we jump to catch block to process the exception?
avatar
t*g
2
用了2次之后,我十分确定,只要你提前升到sero p,资料自动进系统,在worstbuy签
两年合同买marquee花费基本为0,而且不需要多费一句话。
联系sprint升到sero p的电话是1-866-264-1282.
除了待机时间,这款电话对我来说很完美。
avatar
z*e
3
1. placement new
2. wrap the pointer into a class
avatar
c*h
4
升级sero-p要说什么?
就说我要升级到sero-p plan, 立即生效?

【在 t******g 的大作中提到】
: 用了2次之后,我十分确定,只要你提前升到sero p,资料自动进系统,在worstbuy签
: 两年合同买marquee花费基本为0,而且不需要多费一句话。
: 联系sprint升到sero p的电话是1-866-264-1282.
: 除了待机时间,这款电话对我来说很完美。

avatar
p*s
5
nice answer
avatar
b*e
6
脑的

【在 c******h 的大作中提到】
: 升级sero-p要说什么?
: 就说我要升级到sero-p plan, 立即生效?

avatar
e*d
7

Why? Can u explain? Thx
How about the following two cases
A. Destructor defined as private
B. New an object, then an exception is thrown.

Auto_ptr?

【在 z****e 的大作中提到】
: 1. placement new
: 2. wrap the pointer into a class

avatar
k*e
8
我们现在就是Sero P结果今天到bestbuy,说sprint一月开始变了,要求如果在bestbuy
买,就会变成普通计划。要80一月。
我给上面这个电话号码打,sprint的人也这么说。如果想要,只能到sprint买贵的。
看来买到的,是lucky的。
avatar
a*k
9
exception is a good answer.
I don't think A is a good answer. if destructor is private,
then you cannot compile.
another case I can think of is "no virtual destructor".

【在 e******d 的大作中提到】
:
: Why? Can u explain? Thx
: How about the following two cases
: A. Destructor defined as private
: B. New an object, then an exception is thrown.
:
: Auto_ptr?

avatar
d*c
10
你可以照我帖子的方法再试一试。有两个方法
这个的官方说法总是说不行的,sprint经常不同人给你不同说法的。
http://www.mitbbs.com/article_t/PDA/31644431.html

bestbuy

【在 k******e 的大作中提到】
: 我们现在就是Sero P结果今天到bestbuy,说sprint一月开始变了,要求如果在bestbuy
: 买,就会变成普通计划。要80一月。
: 我给上面这个电话号码打,sprint的人也这么说。如果想要,只能到sprint买贵的。
: 看来买到的,是lucky的。

avatar
z*e
11
what are u talking about?
there are millions of ways for a class with private destructor to
instantiated, used, then destructed.

【在 a*****k 的大作中提到】
: exception is a good answer.
: I don't think A is a good answer. if destructor is private,
: then you cannot compile.
: another case I can think of is "no virtual destructor".

avatar
k*e
12
我就是当场给sprint打电话,人家告诉bestbuy不行。我还能说什么。这家bestbuy是不
能再试了。
LD又是个想买什么,当时就要拿到的。搞得我很恼火。
avatar
z*e
13
oops, i misread the question, the question is "not" be called. I though it
was "should be called".
hehe, even public virtual dtor can not be called if you copy it improperly.

【在 e******d 的大作中提到】
:
: Why? Can u explain? Thx
: How about the following two cases
: A. Destructor defined as private
: B. New an object, then an exception is thrown.
:
: Auto_ptr?

avatar
c*h
14
我今天去的
当场在bestbuy打电话给sprint update到sero-p
然后直接叫小二帮我弄,一点问题没有。
1.05刀
回来查plan是sero-p 40一个月。
BTW,谁知道怎么备份contact,怎么tether,怎么把天气预报弄到桌面上啊?

bestbuy

【在 k******e 的大作中提到】
: 我们现在就是Sero P结果今天到bestbuy,说sprint一月开始变了,要求如果在bestbuy
: 买,就会变成普通计划。要80一月。
: 我给上面这个电话号码打,sprint的人也这么说。如果想要,只能到sprint买贵的。
: 看来买到的,是lucky的。

avatar
e*d
15
For placement new, we can call the destructor.
I shall post an example later which covers our prior discussions. It is
hard to type code by phone
avatar
k*e
16
bestbuy 一般会帮你转contact的。我们一直是这么要求的。每次都没有问题。
据bestbuy的人讲,这次是sprint 变了。他们很sure, sero, sero-P 什么的。
avatar
e*d
17
Some code used to verify the above discussions. If you find the code is not correct, please revise it. Thank you.
=========================================================
#include "stdio.h"
#include
class MyException
{
public:
MyException(){
printf("Constructor MyException() is called. \n");
}
~MyException(){
printf("Destructor ~MyException() is called. \n");
}
private:

};
class A{
public:
A()
{
printf("A() is called \n");
}
~A
avatar
b*e
18
go to a diff store, they are clueless

【在 k******e 的大作中提到】
: bestbuy 一般会帮你转contact的。我们一直是这么要求的。每次都没有问题。
: 据bestbuy的人讲,这次是sprint 变了。他们很sure, sero, sero-P 什么的。

avatar
a*n
19
1. In which cases can the destructor of a class not be called?
1)ctor 抛出异常
2)该class 为父类且析构函数非虚, delete 子类指针的情况
3)当然, 你用了new, 没用delete
4)用了placement new 没使用显示desctor
估计考官想听到1)
avatar
d*c
20
如果照有的人说bestbuy系统里有sero p的话,你又已经是sero p了,都不需要给
bestbuy打电话
你并不需要sprint给你什么许可,你是在bestbuy买,bestbuy的人有足够的能力操作成
功,只是有的人不一定会。
给sprint打电话是因为以前的人说bestbuy系统里没有sero p,让sprint告诉bestbuy你
的plan能买smartphone而已。
再去的话自己去吧,带LD办这种不是100%有把握的事不合适。
其实我那个帖子下好几个人都是直接bestbuy升级成功,不过不代表所有人都能那么顺
利。

【在 k******e 的大作中提到】
: 我就是当场给sprint打电话,人家告诉bestbuy不行。我还能说什么。这家bestbuy是不
: 能再试了。
: LD又是个想买什么,当时就要拿到的。搞得我很恼火。

avatar
k*e
21
best的小二说了,人家很清清楚楚,他自己就是sero P/
他说sprint 把这个从他们系统取消了。如果要active,只能是平常的计划。
avatar
k*e
22
明天再试。如果不行,就去sprint
今天LD就想去了。结果sprint已经关门了。

【在 b*****e 的大作中提到】
: go to a diff store, they are clueless
avatar
f*e
23
去了bb两次都失败了,网上order成功,店里取。
发现target有50的,决定去试试。
avatar
f*e
24
去了bb两次都失败了,网上order成功,店里取。
发现target有50的,决定去试试。
avatar
d*c
25
你网上order然后pick up和直接店里买会是一模一样的。
只有网上order,ship到家里才是不同的。
target那种地方,可能更麻烦

【在 f******e 的大作中提到】
: 去了bb两次都失败了,网上order成功,店里取。
: 发现target有50的,决定去试试。

avatar
f*e
26
can, failed again in target
avatar
F*k
27
to killtime:
you better double check your plan in Sprint.com. I just upgraded my old sero
($30) to sero-p on Nov 2 morning. Then went to local BB in Nov 2 night and
picked up a Marquee without any problems.
avatar
t*g
28
同是sero p用户,在sprint系统中还有差异性吗?真奇怪。

【在 f******e 的大作中提到】
: can, failed again in target
avatar
f*e
29
发现可能是我的计划是blackberry 的sero-p,系统不同?
avatar
l*s
30
这个1.05刀是什么啊?
现在还有人在bb成功的吗?

【在 c******h 的大作中提到】
: 我今天去的
: 当场在bestbuy打电话给sprint update到sero-p
: 然后直接叫小二帮我弄,一点问题没有。
: 1.05刀
: 回来查plan是sero-p 40一个月。
: BTW,谁知道怎么备份contact,怎么tether,怎么把天气预报弄到桌面上啊?
:
: bestbuy

avatar
F*P
31
How about the $36 activation fee?
avatar
p*n
32
合同还没到期也可以这么干吗?

【在 t******g 的大作中提到】
: 用了2次之后,我十分确定,只要你提前升到sero p,资料自动进系统,在worstbuy签
: 两年合同买marquee花费基本为0,而且不需要多费一句话。
: 联系sprint升到sero p的电话是1-866-264-1282.
: 除了待机时间,这款电话对我来说很完美。

avatar
j*x
33
just renewed contract for the $0 Marquee at bestbuy.
after reading all the great posts before, upgraded to sero-P through echat.
confirmed with the CS that the marquee only for $40 a month.
ordered from BB online, used free shipping. even though the shipping says
not available, it went through just fine. got the phone in a week. using it
now. except the shorter battery life, the phone is great!
thanks to all.
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。