Redian新闻
>
qeustion about separation of interface and implementation in java
avatar
qeustion about separation of interface and implementation in java# Programming - 葵花宝典
K*9
1
好容易毕业了,工作了,稳定了,希望能给父母移民, 却不知 都年有70的父母 他们
的医疗费用对我可能意味着什么。
我住的州没有 加州和麻省 那样慷慨的福利。
有没有为了 担保 父母移民 结果带来的巨额医疗费用 造成自己破产的先例? 我有哪
些选择? 有哪位有经验吗?
诚向各位前人求教。
avatar
N*L
2
Family: 12,094
E1: 5,555
E2: 3,631
E3: 3,070
E4: 81
E5: 649
AC21 approximately 10,000 at this time. This AC21 figure could change based
on an increase or reduction of new cases being received/processed in the E1
and E2 categories. No August estimates.
NIU Note:1. The 10,000 AC21 estimate is for August and September. 7000+
have been allocated for July reflected in big movement in India E2 cutoff. In
total the AC21 estimate is 17000, which agree with NIU's previous estimate of
15K to
avatar
b*k
3
每次听到这首歌,脑子里闪现出来的,就是你的样子,虽然这么多年过去,你的面目已
经开始模糊,但是回忆起那些曾经欢声笑语的日子,仍然让人觉得温暖。
是你把我从老师眼里的乖宝宝转变成了上课话多的一个倔强的反面典型,是你教会我罚
站的时候其实也可以继续下五子棋,是你在数学老师刚刚开始讲述平面几何的时候,就
开始和我讨论立体几何的问题。馋嘴的我们,总是在课间一个冲下楼去买2包锅巴,另
一个去排队盛两碗豆腐脑,然后两人分而食之,无限满足。那个炎炎的夏日高考,提前
拿到录取通知书的我,竟然因为你要参加考试而紧张地一夜未眠,然后每天早上熬着通
红的眼睛,在考场外静静地陪你高考。
上大学后,我们断断续续仍然通着书信,互相絮叨着彼此的校园生活。你告诉我你喜欢
上了你们学校的一个女孩子,经常挨个地搜索她在那个自习室,可是你说她并不喜欢你
,说你在一个大雨天,不晓得从哪里借了一个小电炉,专门请那个女孩子过来请她吃你
做的煎鸡蛋,因为你曾经说过如果你们在一起,你会天天早上给她煎鸡蛋。。。
那次事件以后,你低落了很久,曾经在我的学校附近一个酒吧打工却不告诉我。你后来
说,你那时穷得每天只吃馒头吃不起菜,却因为是在
avatar
f*d
4
Sorry I can not type chinese right now.
I don't know Java, but have beening using C++ for a while. One thing I don't
understand is that why Java does not separate interface and implementation
for a class.
When I got some java code from my colleague, all the definition and
declarations are mixed together in one file. My colleague told me that
compilation was not an issue for java so separation is not necessary. Is
that true?
I learned that there are a lot of benefits other than compilation when d
avatar
f*n
5
父母的巨额医疗费用跟你破产有什么关系?

【在 K****9 的大作中提到】
: 好容易毕业了,工作了,稳定了,希望能给父母移民, 却不知 都年有70的父母 他们
: 的医疗费用对我可能意味着什么。
: 我住的州没有 加州和麻省 那样慷慨的福利。
: 有没有为了 担保 父母移民 结果带来的巨额医疗费用 造成自己破产的先例? 我有哪
: 些选择? 有哪位有经验吗?
: 诚向各位前人求教。

avatar
D*O
6
spt! great work!
avatar
p*y
7


【在 b*********k 的大作中提到】
: 每次听到这首歌,脑子里闪现出来的,就是你的样子,虽然这么多年过去,你的面目已
: 经开始模糊,但是回忆起那些曾经欢声笑语的日子,仍然让人觉得温暖。
: 是你把我从老师眼里的乖宝宝转变成了上课话多的一个倔强的反面典型,是你教会我罚
: 站的时候其实也可以继续下五子棋,是你在数学老师刚刚开始讲述平面几何的时候,就
: 开始和我讨论立体几何的问题。馋嘴的我们,总是在课间一个冲下楼去买2包锅巴,另
: 一个去排队盛两碗豆腐脑,然后两人分而食之,无限满足。那个炎炎的夏日高考,提前
: 拿到录取通知书的我,竟然因为你要参加考试而紧张地一夜未眠,然后每天早上熬着通
: 红的眼睛,在考场外静静地陪你高考。
: 上大学后,我们断断续续仍然通着书信,互相絮叨着彼此的校园生活。你告诉我你喜欢
: 上了你们学校的一个女孩子,经常挨个地搜索她在那个自习室,可是你说她并不喜欢你

avatar
X*r
8
There is the separation but not at the source level.
For example, when you use third-party libraries, you get the
documentation, which is usually generated by JavaDoc from the
source code, and the binary .jar compiled from the source code.
These are all you need to use the library. The implementation
details are hidden.
Personally I think this is superior than the C/C++ model of dual
header/source. In C/C++, not only you get to modify both places
when making a change, a mismatch would be harder

【在 f*****d 的大作中提到】
: Sorry I can not type chinese right now.
: I don't know Java, but have beening using C++ for a while. One thing I don't
: understand is that why Java does not separate interface and implementation
: for a class.
: When I got some java code from my colleague, all the definition and
: declarations are mixed together in one file. My colleague told me that
: compilation was not an issue for java so separation is not necessary. Is
: that true?
: I learned that there are a lot of benefits other than compilation when d

avatar
K*9
9
Page 7 of 财力担保表 I-864 http://www.uscis.gov/sites/default/files/files/form/i-864.pdf
*What other consequences are there?*
If an intending immigrant becomes a permanent resident in the US based on a
Form I-864 that you have signed, then until your obligations under the Form
I-864 terminate, your income and assets may be considered to be available to
that person, in determining whether he or she is eligible for certain
Federal mean-tested public benefits and also for State or local means-tested
public benefits, if the State or local government's rules provide for
consideration of your income and assets as available to the person.
Page 8
If a Federal, State or local agency, or a private agency provides any
covered means-tested public benefit to the person who becomes a permanent
resident based on the Form I-864 that you signed, the agency may ask you to
reimburse them for the amount of the benefits they provided. If you do not
make the reimbursement, the agency may sue you for the amount that the
agency believes you owe.
If you are sued, and the court enters a judgment against you, the person or
agency that sued you may use any legally permitted procedures for enforcing
or collecting the judgment. You may also be required to pay the costs of
collection, including attorney fees.
是我读多了还是大家都没读就给父母签字申请移民了? 是我读错了么?
avatar
B*i
10
SUPER, 不明白EB1 都拿了5000 多了为啥没排期,从CIS 公布的说明看,EB1 每年的名
额就2987,是不是ROW EB1 都current, 所以中印的EB1 可以提前分EB1 ROW 的剩余名
额。 请明白人解惑,不过都是中国人拿我也没啥意见。
非常感谢NIU 的辛苦工作。
avatar
K*y
11
avatar
f*d
12
Thank you. Now it makes sense to me.

【在 X****r 的大作中提到】
: There is the separation but not at the source level.
: For example, when you use third-party libraries, you get the
: documentation, which is usually generated by JavaDoc from the
: source code, and the binary .jar compiled from the source code.
: These are all you need to use the library. The implementation
: details are hidden.
: Personally I think this is superior than the C/C++ model of dual
: header/source. In C/C++, not only you get to modify both places
: when making a change, a mismatch would be harder

avatar
m*n
13
你试试看Obama Care?最近本的medicaid?
avatar
l*e
14
非常感谢NIU 的辛苦工作
avatar
g*g
15
Not sure what you are talking about there.
Java has explicit interface and class type, while C++ only
has class.
If you are talking about the header file C++ has, that's not
necessary for Java. There's no macro for java, and all functions
are virtual by default, class files have a defined hierarchy. It
all makes compiler's job much simpler.

't
implementation
doing

【在 f*****d 的大作中提到】
: Sorry I can not type chinese right now.
: I don't know Java, but have beening using C++ for a while. One thing I don't
: understand is that why Java does not separate interface and implementation
: for a class.
: When I got some java code from my colleague, all the definition and
: declarations are mixed together in one file. My colleague told me that
: compilation was not an issue for java so separation is not necessary. Is
: that true?
: I learned that there are a lot of benefits other than compilation when d

avatar
m*n
16
你试试看Obama Care?最近本的medicaid?
avatar
z*o
17
Great work! Support
avatar
l*e
18
感觉你是要问declaration和definition。
C++这样做(其实是继承C的传统),主要是方便发布api,一般都要提供头文件和binar
y的库;而java, c#这些都有虚拟机,编译成bytecode后,类声明都是可见的。

't
implementation
doing

【在 f*****d 的大作中提到】
: Sorry I can not type chinese right now.
: I don't know Java, but have beening using C++ for a while. One thing I don't
: understand is that why Java does not separate interface and implementation
: for a class.
: When I got some java code from my colleague, all the definition and
: declarations are mixed together in one file. My colleague told me that
: compilation was not an issue for java so separation is not necessary. Is
: that true?
: I learned that there are a lot of benefits other than compilation when d

avatar
m*n
19
试试看Obama care?或者最基本的Medicaid?
avatar
f*e
20
EB1 has highest priority coming to spill overs.

【在 B********i 的大作中提到】
: SUPER, 不明白EB1 都拿了5000 多了为啥没排期,从CIS 公布的说明看,EB1 每年的名
: 额就2987,是不是ROW EB1 都current, 所以中印的EB1 可以提前分EB1 ROW 的剩余名
: 额。 请明白人解惑,不过都是中国人拿我也没啥意见。
: 非常感谢NIU 的辛苦工作。

avatar
l*e
21
如果要改implementation保持interface不变的话,c/c++多半只用该defintions。

【在 X****r 的大作中提到】
: There is the separation but not at the source level.
: For example, when you use third-party libraries, you get the
: documentation, which is usually generated by JavaDoc from the
: source code, and the binary .jar compiled from the source code.
: These are all you need to use the library. The implementation
: details are hidden.
: Personally I think this is superior than the C/C++ model of dual
: header/source. In C/C++, not only you get to modify both places
: when making a change, a mismatch would be harder

avatar
K*9
22
Obama Care 只管65岁以下的。我父母都过了这个年龄。 我曾经在 obama care 的网上
问过在线咨询人员,他们居然也不知道 65 岁以上的合法移民是否可以通过这个market
place 买医保。 有人试过吗?谢谢大家。
avatar
j*e
23
是的,奥傻在6/2给NIU的信中就提到了中印EB1很早就开始分ROW的EB1名额了。“No
for AC21 to start there just needs to be a clear indication that there will
be "otherwise unused" numbers available for the particular Employment
category, and this is independent of the per-country issue. As a result I
began applying the AC21 rule to China and India EB1 long ago, and will in
EB2 for July.”
当时NIU要求奥傻确保在EB2 spillover开始前中国EB+FB拿满7%,这厮就举出这个例子
来反驳说不一定要中国EB+FB拿满7%就可以开始分ROW的Spillover名额。

【在 B********i 的大作中提到】
: SUPER, 不明白EB1 都拿了5000 多了为啥没排期,从CIS 公布的说明看,EB1 每年的名
: 额就2987,是不是ROW EB1 都current, 所以中印的EB1 可以提前分EB1 ROW 的剩余名
: 额。 请明白人解惑,不过都是中国人拿我也没啥意见。
: 非常感谢NIU 的辛苦工作。

avatar
w*g
24
如果C++像java那样写,所有的东西都inline到头文件里,会有什么坏处?
我老写C++懒得把一个东西分两处写,这么干已经很久了。这样的code被别人看到会不会
不利于找工作?

't
implementation
doing

【在 f*****d 的大作中提到】
: Sorry I can not type chinese right now.
: I don't know Java, but have beening using C++ for a while. One thing I don't
: understand is that why Java does not separate interface and implementation
: for a class.
: When I got some java code from my colleague, all the definition and
: declarations are mixed together in one file. My colleague told me that
: compilation was not an issue for java so separation is not necessary. Is
: that true?
: I learned that there are a lot of benefits other than compilation when d

avatar
l*i
25
Obama Care在某些州还要求要收入过一万多,没收入的让去申请madicaid,我觉得你爸
妈这么大年纪没收入可以申请medicaid,但是似乎要绿卡五年以后才可以,之前应该是
担保人的责任?可以查一下,我也是一样的情况,不过我爸妈还年轻,可以每隔两三年
回国全面体检下,国内检查便宜。

market

【在 K****9 的大作中提到】
: Obama Care 只管65岁以下的。我父母都过了这个年龄。 我曾经在 obama care 的网上
: 问过在线咨询人员,他们居然也不知道 65 岁以上的合法移民是否可以通过这个market
: place 买医保。 有人试过吗?谢谢大家。

avatar
f*e
26
注意到eb5c和去年相比,有显著的下降,可能是个好消息。
avatar
g*g
27
You can declare interface and let class implements interface
if that's what you try to achieve.

【在 l******e 的大作中提到】
: 如果要改implementation保持interface不变的话,c/c++多半只用该defintions。
avatar
l*7
28
年纪太大的老人,还是国内养老实在一些。
avatar
F*t
29
看来本FY可以解决掉06年5月以前的积压,FY2011可以推进到07年了。
avatar
l*e
30
如果是template很多,很正常

不会

【在 w***g 的大作中提到】
: 如果C++像java那样写,所有的东西都inline到头文件里,会有什么坏处?
: 我老写C++懒得把一个东西分两处写,这么干已经很久了。这样的code被别人看到会不会
: 不利于找工作?
:
: 't
: implementation
: doing

avatar
T*k
31
10000 for Aug and Sep. Good to know! Thanks, NIU!
"AC21 approximately 10,000 at this time. This AC21 figure could change
based on an increase or reduction of new cases being received/processed in
the E1 and E2 categories. No August estimates."
To me, this doesn't include E5, and E5 might give us extra 5K. Look at E5C
number, only several hundreds. Last year is near 2-3K.
AC21 change means 10000 is not a solid number yet.
avatar
K*k
32
这个理解我想是对的。
也算是无聊等待中的好消息吧。

【在 F*****t 的大作中提到】
: 看来本FY可以解决掉06年5月以前的积压,FY2011可以推进到07年了。
avatar
l*e
33
I guess next's year's EB5 C will have 0 left, due to the policy change from
1M to 0.5M invest. Just my guess...
avatar
s*l
34
E4是难民?只有这么点?

based
E1

【在 N*********L 的大作中提到】
: Family: 12,094
: E1: 5,555
: E2: 3,631
: E3: 3,070
: E4: 81
: E5: 649
: AC21 approximately 10,000 at this time. This AC21 figure could change based
: on an increase or reduction of new cases being received/processed in the E1
: and E2 categories. No August estimates.
: NIU Note:1. The 10,000 AC21 estimate is for August and September. 7000+

avatar
T*k
35
Changed several years ago. The E5 decline might because IRS require
oversea account report and that account must be taxed. Big financial lose
for rich people.
That is why wealthy Japanese and Europeans won't migrate to U.S. Even
Africans.

from

【在 l******e 的大作中提到】
: I guess next's year's EB5 C will have 0 left, due to the policy change from
: 1M to 0.5M invest. Just my guess...

avatar
p*g
36
E4是宗教移民,中国人自然少了。

【在 s*****l 的大作中提到】
: E4是难民?只有这么点?
:
: based
: E1

avatar
r*e
37
looks good.

based
E1

【在 N*********L 的大作中提到】
: Family: 12,094
: E1: 5,555
: E2: 3,631
: E3: 3,070
: E4: 81
: E5: 649
: AC21 approximately 10,000 at this time. This AC21 figure could change based
: on an increase or reduction of new cases being received/processed in the E1
: and E2 categories. No August estimates.
: NIU Note:1. The 10,000 AC21 estimate is for August and September. 7000+

avatar
m*n
38
The number O gave out today is very different from the numbers O provided to
p838 not too long ago. I believe p838 has good faith and passed the true
data to EB2C. (p838, if you are reading this post and still gonna spread "
Medson hates me. And he represents NIU!" msg. Make sure you stick this post'
s URL in your links too.) The conflicting data is disturbing.
I suppose we'll find out very soon. If there are indeed 10,000 quota left,
cutoff date for Aug should move pretty aggressively to maybe
avatar
a*n
39
看来八月排期很关键啊

to
post'

【在 m****n 的大作中提到】
: The number O gave out today is very different from the numbers O provided to
: p838 not too long ago. I believe p838 has good faith and passed the true
: data to EB2C. (p838, if you are reading this post and still gonna spread "
: Medson hates me. And he represents NIU!" msg. Make sure you stick this post'
: s URL in your links too.) The conflicting data is disturbing.
: I suppose we'll find out very soon. If there are indeed 10,000 quota left,
: cutoff date for Aug should move pretty aggressively to maybe

avatar
g*t
40
OMG, Aug VB moving to March 2006 is aggressive?

to
post'

【在 m****n 的大作中提到】
: The number O gave out today is very different from the numbers O provided to
: p838 not too long ago. I believe p838 has good faith and passed the true
: data to EB2C. (p838, if you are reading this post and still gonna spread "
: Medson hates me. And he represents NIU!" msg. Make sure you stick this post'
: s URL in your links too.) The conflicting data is disturbing.
: I suppose we'll find out very soon. If there are indeed 10,000 quota left,
: cutoff date for Aug should move pretty aggressively to maybe

avatar
i*r
41
I think the number he gave to p838 is the actual usage, and the number he
gave to NIU includes some allocation but has not been used yet.

to
post'

【在 m****n 的大作中提到】
: The number O gave out today is very different from the numbers O provided to
: p838 not too long ago. I believe p838 has good faith and passed the true
: data to EB2C. (p838, if you are reading this post and still gonna spread "
: Medson hates me. And he represents NIU!" msg. Make sure you stick this post'
: s URL in your links too.) The conflicting data is disturbing.
: I suppose we'll find out very soon. If there are indeed 10,000 quota left,
: cutoff date for Aug should move pretty aggressively to maybe

avatar
a*h
42
No the difference medson meant i think is the total ac21 numbers
P838 keeps saying 10000
Now it's more like 17000 (7000+10000)
10000 cutoff can't move to 2006 at all

【在 i*****r 的大作中提到】
: I think the number he gave to p838 is the actual usage, and the number he
: gave to NIU includes some allocation but has not been used yet.
:
: to
: post'

avatar
a*1
43
To avoid guessing, can O's original message be posted? If it is not good to
post here, the NIU website should be fine.

【在 i*****r 的大作中提到】
: I think the number he gave to p838 is the actual usage, and the number he
: gave to NIU includes some allocation but has not been used yet.
:
: to
: post'

avatar
w*r
44
P838给解封没有?
BM也太那个了,封了14天
赶紧放出来吧,等他说完,O8把PD POST出来了,再封俺也没意见
avatar
l*r
47
顶一下,FORUM那个表的内容我看不了。好像表格字大行距小,不知道其他人有没有遇
到类似的问题。

based
E1

【在 N*********L 的大作中提到】
: Family: 12,094
: E1: 5,555
: E2: 3,631
: E3: 3,070
: E4: 81
: E5: 649
: AC21 approximately 10,000 at this time. This AC21 figure could change based
: on an increase or reduction of new cases being received/processed in the E1
: and E2 categories. No August estimates.
: NIU Note:1. The 10,000 AC21 estimate is for August and September. 7000+

avatar
p*6
48
发信人: JOHN87 (游客), 信区: EB23
标 题: Re: NIU EB2项目聘请志愿者
发信站: BBS 未名空间站 (Sat Jun 19 10:13:17 2010, 美东)
NIU 还拿着“中国EB2将损失数百家庭剩余名额”说事,老奥的应对措施是“关上家庭
剩余名额”的门,EB2EB3都没有家庭剩余名额了,尽量让家庭名额在FBC内部自己消化
(这是游说代表得来的最新消息),不授你中国人把柄,就这么简单。

2. E2 usage as of June is 3631, which reflects Family Fall Across.Even
though we were not able to push for China FB+EB > 7% by the end of July, DOS'
s commitment of making sure China FB+EB > 7% by the end of September is a
big
progress we made this year comparing to the dismal number

【在 N*********L 的大作中提到】
: Family: 12,094
: E1: 5,555
: E2: 3,631
: E3: 3,070
: E4: 81
: E5: 649
: AC21 approximately 10,000 at this time. This AC21 figure could change based
: on an increase or reduction of new cases being received/processed in the E1
: and E2 categories. No August estimates.
: NIU Note:1. The 10,000 AC21 estimate is for August and September. 7000+

avatar
j*e
49
这个马甲同学又来攻击NIU了?
奥傻能把中国的家庭剩余名额用完也是好事,再怎么说也是落到了中国人手里,总比去
年那样白白浪费掉好。有剩余,就给中国EB用;没有剩余,只要中国FB+EB满了7%,那我
们也无话可说。
NIU迫使奥傻今年不敢浪费一个中国7%的份内名额,已经比去年好多了。
如果这也可以拿来作为攻击NIU的理由,也太mean了点。
avatar
f*e
50
能不能澄清一下,这里10000个spill over,是不是包括7月份放出来的7000个左右?
如果不包括的话,这7000个算什么?

based
E1

【在 N*********L 的大作中提到】
: Family: 12,094
: E1: 5,555
: E2: 3,631
: E3: 3,070
: E4: 81
: E5: 649
: AC21 approximately 10,000 at this time. This AC21 figure could change based
: on an increase or reduction of new cases being received/processed in the E1
: and E2 categories. No August estimates.
: NIU Note:1. The 10,000 AC21 estimate is for August and September. 7000+

avatar
p*6
51
co-ask!!

【在 f*******e 的大作中提到】
: 能不能澄清一下,这里10000个spill over,是不是包括7月份放出来的7000个左右?
: 如果不包括的话,这7000个算什么?
:
: based
: E1

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