【OCJP】 第1题---允许使用泛型类,避免一个不用检查的警告

Given a pre-generics implementation of a method:
11. public static int sum(List list) {
12. int sum = 0;
13. for ( Iterator iter = list.iterator(); iter.hasNext(); ) {
14. int i = ((Integer)iter.next()).intValue();
15. sum += i;
16. }
17. return sum;
18. }
What three changes allow the class to be used with generics and avoid an unchecked warning? (Choose
three.)
A. Remove line 14.
B. Replace line 14 with "int i = iter.next();".
C. Replace line 13 with "for (int i : intList) {".
D. Replace line 13 with "for (Iterator iter : intList) {".
E. Replace the method declaration with "sum(List<int> intList)".
F. Replace the method declaration with "sum(List<Integer> intList)".
Answer: ACF
本道题考查:

allow the class to be used with generics and avoid an unchecked warning

允许使用泛型类,避免一个不用检查的警告。

我在eclipse里敲了下代码,

public int sum(List<Integer> list) {
		int sum = 0;
		//第一种写法:
		//		for(int i: list){
		//			sum += i;
		//		}
		for (Iterator<Integer> iterator = list.iterator(); iterator.hasNext();) {
			int i = iterator.next();
			sum += i;
		}
		return sum;
	}

foreach的写法很是方便,第二种写法也可以,就是有点麻烦。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值