Redian新闻
>
objective-c有arc来自动release,和jave的gc一样,怎么就没有java那么明显的慢呢?
avatar
objective-c有arc来自动release,和jave的gc一样,怎么就没有java那么明显的慢呢?# Programming - 葵花宝典
l*d
1
父母去年来的美国,半年之后回去了,但现在又计划来美,目前以前的B2签证还在1年
的有效期内,请问他们还需要重新签证吗,如果不需要,入关后的滞留时间会不会不给
半年了?
avatar
i*t
2
急问,PERM广告是否要Post在Monster.com上?
小公司(不到五十人)。劳工部的网站和大报纸的两个周日版是一定的Post。Local报纸
和无线电台也准备Post。
另外的,公司的律师准备Post到Monster.com,他说因为公司太小,如果Post在公司网
站上,移民局可能会说访问公司网站的人少,可能会导致Audit.
但是我很担心Post在Monster.com上可能会受到很多简历。
请大侠们支招!多谢!
另外,如果需要Post在Monster.com上,Post多久比较合适?
avatar
Y*N
3
买了rose insect killer
没有任何效果 叶子都枯黄了
种在盆里的
avatar
c*e
4
objective-c有arc来自动release,和jave的gc一样,怎么就没有java那么明显的慢呢?
这个在用iphone和android时比较一下就可以发现,iphone非常的连贯,android就没有
那么连贯。什么原因?2个都有garbage collection啊。
avatar
f*n
5
不需要。给多久无法预测;一般会给半年。
avatar
i*t
6
还有,可以把简历寄到律师事务所吗?

【在 i****t 的大作中提到】
: 急问,PERM广告是否要Post在Monster.com上?
: 小公司(不到五十人)。劳工部的网站和大报纸的两个周日版是一定的Post。Local报纸
: 和无线电台也准备Post。
: 另外的,公司的律师准备Post到Monster.com,他说因为公司太小,如果Post在公司网
: 站上,移民局可能会说访问公司网站的人少,可能会导致Audit.
: 但是我很担心Post在Monster.com上可能会受到很多简历。
: 请大侠们支招!多谢!
: 另外,如果需要Post在Monster.com上,Post多久比较合适?

avatar
g*o
7
不懂,帮你顶一下,杯子主席外出逍遥了
avatar
c*9
8
GC of java is Runtime, while ARC is compile time.

【在 c*********e 的大作中提到】
: objective-c有arc来自动release,和jave的gc一样,怎么就没有java那么明显的慢呢?
: 这个在用iphone和android时比较一下就可以发现,iphone非常的连贯,android就没有
: 那么连贯。什么原因?2个都有garbage collection啊。

avatar
l*d
9
谢谢,也就是说,第二次来美只要在签证有效期内就可以,没必要再去签证。第一次
来美给的半年滞留期,入关的时候不会考虑?十分感谢!

【在 f*******n 的大作中提到】
: 不需要。给多久无法预测;一般会给半年。
avatar
s*0
10

Neem oil可以杀spider mites,我用这个杀死了栀子花上的spider mites。
Lowes有售。

【在 Y****N 的大作中提到】
: 买了rose insect killer
: 没有任何效果 叶子都枯黄了
: 种在盆里的

avatar
c*e
11
java怎么不搞个compile time的?

【在 c*******9 的大作中提到】
: GC of java is Runtime, while ARC is compile time.
avatar
M*g
12
同问
avatar
c*9
13
跨平台。

【在 c*********e 的大作中提到】
: java怎么不搞个compile time的?
avatar
c*e
14
orz
bill gates的c#,也可以搞arc了。 看来steve jobs, bill gates思路还是一样的。

【在 c*******9 的大作中提到】
: 跨平台。
avatar
c*9
15
虚拟机上的debug还是容易些。

【在 c*********e 的大作中提到】
: orz
: bill gates的c#,也可以搞arc了。 看来steve jobs, bill gates思路还是一样的。

avatar
c*e
16
xcode里面debug也还行啊。

【在 c*******9 的大作中提到】
: 虚拟机上的debug还是容易些。
avatar
f*n
17
reference counting无法对付cycle。只能靠程序员自己设计怎么正确地用weak
reference来防止cycle。如果用错了就会导致memory leak或object用到一半消失。
Blocks(就是Apple的anonymous function)很容易不小心会产生cycle。用weak
reference很麻烦、弄到编码更复杂;很多人都不懂怎么正确用。
还有,reference counting增减count的时候需要lock,否则就不thread-safe。但是
lock是很慢的。
avatar
l*s
18
out goes objc, in comes swift
avatar
c*e
19
swift就是objective-c上加了一层皮,编译的时候,swift先编译成objective-c,再继
续。这个swift也太搞了。

【在 l*********s 的大作中提到】
: out goes objc, in comes swift
avatar
c*e
20
那为什么的iphone的用户体验明显比android的好呢?

【在 f*******n 的大作中提到】
: reference counting无法对付cycle。只能靠程序员自己设计怎么正确地用weak
: reference来防止cycle。如果用错了就会导致memory leak或object用到一半消失。
: Blocks(就是Apple的anonymous function)很容易不小心会产生cycle。用weak
: reference很麻烦、弄到编码更复杂;很多人都不懂怎么正确用。
: 还有,reference counting增减count的时候需要lock,否则就不thread-safe。但是
: lock是很慢的。

avatar
c*e
21
java运行的时候是在jre里面跑,又不是在linux,windows里跑。java搞个compile time
的gc,编译的时候把释放内存写在code里,没什么不行的啊。

【在 c*******9 的大作中提到】
: 跨平台。
avatar
l*s
22
you are right, it has nothing to do with cross-platform, but rather a
language choice between performance and being easy.

time

【在 c*********e 的大作中提到】
: java运行的时候是在jre里面跑,又不是在linux,windows里跑。java搞个compile time
: 的gc,编译的时候把释放内存写在code里,没什么不行的啊。

avatar
l*s
23
fast food 比 fine dining 难吃很奇怪么。

【在 c*********e 的大作中提到】
: 那为什么的iphone的用户体验明显比android的好呢?
avatar
ET
24
ARC is not garbage collection.
this stackoverflow explains better:
http://stackoverflow.com/questions/6385212/how-does-the-new-aut

【在 c*********e 的大作中提到】
: objective-c有arc来自动release,和jave的gc一样,怎么就没有java那么明显的慢呢?
: 这个在用iphone和android时比较一下就可以发现,iphone非常的连贯,android就没有
: 那么连贯。什么原因?2个都有garbage collection啊。

avatar
ET
25
here is an explanation from an old article.
http://www.imore.com/android-ui-smooth-ios

【在 c*********e 的大作中提到】
: 那为什么的iphone的用户体验明显比android的好呢?
avatar
c*9
26
并不完全是这样吧。有的东西没有objc对应。

【在 c*********e 的大作中提到】
: swift就是objective-c上加了一层皮,编译的时候,swift先编译成objective-c,再继
: 续。这个swift也太搞了。

avatar
g*g
27
No, that's from an intern that knows nothing and it's been refuted to death.
The No.1 reason is Android allows more control for apps and users. e.g. It
doesn't limit much on what you can do as a background service, so you can
poll and drain the battery if you like. iOS on the other hand, put much
restriction there. For a long time no app other than selective few stock
apps are allowed running concurrently. The downside is that your state may
not be reserved once you switched back to an app.
Overall it's freedom vs. control. My Android device would run as fluidly as
day 1 after 2 years but an average Joe's may not.

【在 ET 的大作中提到】
: here is an explanation from an old article.
: http://www.imore.com/android-ui-smooth-ios

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