Redian新闻
>
IPSoft的面试题,和大家共享下
avatar
IPSoft的面试题,和大家共享下# JobHunting - 待字闺中
g*i
1
当命运在别人手里的时候, 太让人不安了
avatar
n*2
2
很简单,呵呵。写一个函数的具体实现。
/**
* Given a list of objects, returns the last object in the list that is an
instance of type Foo.
* @param stuff the list of objects
* @return an object of type Foo
* @throws NoSuchFooException if there is no Foo in the list
*/
Foo getLastFoo(List stuff) throws NoSuchFooException;
avatar
I*d
3
不管别人有没有良心,自己努力和为自己都是必须的

【在 g******i 的大作中提到】
: 当命运在别人手里的时候, 太让人不安了
avatar
n*2
4
答案:
Foo getLastFoo(List stuff) throws NoSuchFooException {
for (int i=stuff.size()-1; i>=0; i--) {
if (stuff.get(i) instanceof Foo) {
return (Foo) stuff.get(i);
}
}
throw new NoSuchFooException();
}

【在 n**********2 的大作中提到】
: 很简单,呵呵。写一个函数的具体实现。
: /**
: * Given a list of objects, returns the last object in the list that is an
: instance of type Foo.
: * @param stuff the list of objects
: * @return an object of type Foo
: * @throws NoSuchFooException if there is no Foo in the list
: */
: Foo getLastFoo(List stuff) throws NoSuchFooException;

avatar
m*n
5
非常有道理,特别适合F2H4的男人们

【在 g******i 的大作中提到】
: 当命运在别人手里的时候, 太让人不安了
avatar
B*4
6
先谢谢了。
面试就一个题目?还是说coding方面就这一个?
avatar
f*D
7
RE
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。