Redian新闻
>
个人信息被保险公司泄露怎么办
avatar
个人信息被保险公司泄露怎么办# Law - 律师事务所
c*e
1
50w私人gift,准备从香港转过来全款买房。在递485前后转帐,买房,是不是会延长
审核或者招来rfe? 网上搜了下,没有找到什么有用的信息,有经验的前辈指教一下吧
。有用的信息包子谢谢!
avatar
s*9
2
因为第一次用绿卡回国,不知道回来入境时有没有别的额外要求,还是只是拿绿卡和护
照就可以了。
avatar
s*g
3
白菜。
祝各位圣诞快乐!
avatar
z*e
4
类似这个:
int* pi;
tr1::shared_ptr spi=tr1::shared_ptr(pi);
这样做,会有什么问题么?
avatar
h*0
5
本人在加州,买的是Anthem的医保,昨天保险公司发致歉信给我,说由于他们的电脑系
统被黑客侵入,客户的信息可能泄露,然后提供了一个一年免费的Identity Threft保
护 (由第三方公司提供)。请问这种情况如果我以后的信息被盗用了(比如一年后)
,能去找这家保险公司索赔吗?
avatar
l*c
6
FBI is more likely than USCIS to talk to you. IRS should also be interested.
50W is lots of money. How do you prove it is legitimate and clean money?
avatar
c*2
7
拿绿卡和护照就可以了。
If you will be out of US for almost 6 months (or longer), you should prepare
a statement and proof of not abandoning GC.
avatar
R*G
8
赞!欣欣向荣。
avatar
h*0
9
shared_ptr针对的是指针指向的对象,不是指针本身。

【在 z****e 的大作中提到】
: 类似这个:
: int* pi;
: tr1::shared_ptr spi=tr1::shared_ptr(pi);
: 这样做,会有什么问题么?

avatar
O*n
10
this happens all the time. relax.
avatar
c*e
11
来源的各种手续齐全也合法,当然如果fbi真的会钻牛角尖那也只有等到绿卡批下来再
说了。也有朋友说汇款,买房其实对办绿卡有正作用,证明你的财力和想settle down
的愿望,也似乎有道理呀。哪位过来人给点建议?
avatar
r*o
12
羡慕啊。
我的白菜种子现在还是苗苗
一个月了,两片叶子
种子包装上说40天就能吃了。
郁闷,我连间苗都还不行。

【在 s*****g 的大作中提到】
: 白菜。
: 祝各位圣诞快乐!

avatar
d*p
13
pi is not initialized to a pointer to variable allocated on heap. and it is
even not initialized to 0.
so either
....boost::shared_ptr spi(new int 1)
or
... boost::shared_ptr spi // initialized to 0
Normally it is a bad form to write spi() since the pointer
could be either (1) a pointer to local variable or (2) a pointer not "fresh"
- shared_ptr's shared_count object exclusively wraps a raw pointer to heap.
So the following code will terribly fail:
int* myIntPtr = new int

【在 z****e 的大作中提到】
: 类似这个:
: int* pi;
: tr1::shared_ptr spi=tr1::shared_ptr(pi);
: 这样做,会有什么问题么?

avatar
O*n
14
this happens all the time. relax.
avatar
e*c
15
我律师说buy property和immigration是两个不搭界的事情,移民局不管你买房还是不
买房。
avatar
t*0
16
圣诞快乐!

【在 s*****g 的大作中提到】
: 白菜。
: 祝各位圣诞快乐!

avatar
z*e
17
多谢。
我也是这么想的,
也许tr1 和 boost 实现有区别?
怎么我上边那两行也没报错,也没有运行错误呢?
我也试了这个:
int* pi=new int();
tr1::shared_ptr spi1=tr1::shared_ptr(pi);
tr1::shared_ptr spi2=tr1::shared_ptr(pi);
好像没事。

is
fresh"
heap.

【在 d****p 的大作中提到】
: pi is not initialized to a pointer to variable allocated on heap. and it is
: even not initialized to 0.
: so either
: ....boost::shared_ptr spi(new int 1)
: or
: ... boost::shared_ptr spi // initialized to 0
: Normally it is a bad form to write spi() since the pointer
: could be either (1) a pointer to local variable or (2) a pointer not "fresh"
: - shared_ptr's shared_count object exclusively wraps a raw pointer to heap.
: So the following code will terribly fail:

avatar
h*0
18
UB……
你直接试:
int* p = new int();
int* q = p;
delete p;
delete q;
应该也没事

【在 z****e 的大作中提到】
: 多谢。
: 我也是这么想的,
: 也许tr1 和 boost 实现有区别?
: 怎么我上边那两行也没报错,也没有运行错误呢?
: 我也试了这个:
: int* pi=new int();
: tr1::shared_ptr spi1=tr1::shared_ptr(pi);
: tr1::shared_ptr spi2=tr1::shared_ptr(pi);
: 好像没事。
:

avatar
N*m
19
report error on ubuntu

【在 h*****0 的大作中提到】
: UB……
: 你直接试:
: int* p = new int();
: int* q = p;
: delete p;
: delete q;
: 应该也没事

avatar
z*e
20
那个肯定是错的。

【在 N***m 的大作中提到】
: report error on ubuntu
avatar
z*e
21
我又试了一下,发现shared_ptr应该只能用在heap,和new,delete应该还是一样的。
你那个例子应该也是如你所说,会运行错误的。
多谢。

is
fresh"
heap.

【在 d****p 的大作中提到】
: pi is not initialized to a pointer to variable allocated on heap. and it is
: even not initialized to 0.
: so either
: ....boost::shared_ptr spi(new int 1)
: or
: ... boost::shared_ptr spi // initialized to 0
: Normally it is a bad form to write spi() since the pointer
: could be either (1) a pointer to local variable or (2) a pointer not "fresh"
: - shared_ptr's shared_count object exclusively wraps a raw pointer to heap.
: So the following code will terribly fail:

avatar
d*p
22
What you said is almost 100% true except one case:
shared pointer can wrap pointer pointing to local variable in its scope if
you explicitly provide a null deleter
when constructing the shared pointer.

【在 z****e 的大作中提到】
: 我又试了一下,发现shared_ptr应该只能用在heap,和new,delete应该还是一样的。
: 你那个例子应该也是如你所说,会运行错误的。
: 多谢。
:
: is
: fresh"
: heap.

avatar
z*e
23
你说太对了,我都快忘了这个事了。
多谢提醒,这点是和auto_ptr另一巨大区别啊!

【在 d****p 的大作中提到】
: What you said is almost 100% true except one case:
: shared pointer can wrap pointer pointing to local variable in its scope if
: you explicitly provide a null deleter
: when constructing the shared pointer.

avatar
h*8
24
能否展开说说? 什么叫null deleter?

【在 d****p 的大作中提到】
: What you said is almost 100% true except one case:
: shared pointer can wrap pointer pointing to local variable in its scope if
: you explicitly provide a null deleter
: when constructing the shared pointer.

avatar
z*e
25
就是不调用operator delete的deleter.

【在 h****8 的大作中提到】
: 能否展开说说? 什么叫null deleter?
avatar
h*8
26
那具体是什么样子的?

【在 z****e 的大作中提到】
: 就是不调用operator delete的deleter.
avatar
z*e
27
void null_deleter(char*){}
int main(int argc, char* argv[]){
char* a;
shared_ptr spA(a,null_deleter);
}

【在 h****8 的大作中提到】
: 那具体是什么样子的?
avatar
d*p
28
if this code stays in main function, it is possible that compiler doesn't
generate code destructing the two shared pointers and you won't see a crash.
Otherwise, there will be a crash for sure.

【在 z****e 的大作中提到】
: 多谢。
: 我也是这么想的,
: 也许tr1 和 boost 实现有区别?
: 怎么我上边那两行也没报错,也没有运行错误呢?
: 我也试了这个:
: int* pi=new int();
: tr1::shared_ptr spi1=tr1::shared_ptr(pi);
: tr1::shared_ptr spi2=tr1::shared_ptr(pi);
: 好像没事。
:

avatar
z*e
29
for sure for sure.

crash.

【在 d****p 的大作中提到】
: if this code stays in main function, it is possible that compiler doesn't
: generate code destructing the two shared pointers and you won't see a crash.
: Otherwise, there will be a crash for sure.

相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。