由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 问一个java generic的问题
相关主题
java 求助请教 print factors 这个题
问个java小白问题java的基本问题
leetcode的3sum的运行时间问题问个Java的HashSet.contains的问题
问个fb onsite题目请教一道google面试题
permutationII ,如果不用hashset,用迭代的方法,如何防止重复F电面
发个L家面经,攒rp请教下3sum为撒超时
怎么改List>的值?LC 4-sum相当麻烦啊
如何add to 一个list of lists问道leetcode的题:Combination Sum II
相关话题的讨论汇总
话题: list话题: integer话题: warning话题: java
进入JobHunting版参与讨论
1 (共1页)
c********t
发帖数: 5706
1
这句java
List[] list = (List[]) new ArrayList[10];
会有 unchecked cast warning, 如何改写才能 type safe? (不要SuppressWarnings
.)
L********e
发帖数: 159
2
Array covariance本来就不是type safe。因为assignment要有runtime type check。
j**********r
发帖数: 3798
3
can't you just use a list of list? when backed by array list, there's no
performance difference

SuppressWarnings

【在 c********t 的大作中提到】
: 这句java
: List[] list = (List[]) new ArrayList[10];
: 会有 unchecked cast warning, 如何改写才能 type safe? (不要SuppressWarnings
: .)

L*********s
发帖数: 3063
4
public static void main(String[] args) {
List[] lists = new List[10];
lists[0] = new ArrayList<>();
lists[0].add(1);
System.out.println(lists[0].get(0));
}
no unchecked warning

SuppressWarnings

【在 c********t 的大作中提到】
: 这句java
: List[] list = (List[]) new ArrayList[10];
: 会有 unchecked cast warning, 如何改写才能 type safe? (不要SuppressWarnings
: .)

c********t
发帖数: 5706
5
好吧,多谢霸哥。

【在 j**********r 的大作中提到】
: can't you just use a list of list? when backed by array list, there's no
: performance difference
:
: SuppressWarnings

c********t
发帖数: 5706
6
你确定第一句不会warning?

【在 L*********s 的大作中提到】
: public static void main(String[] args) {
: List[] lists = new List[10];
: lists[0] = new ArrayList<>();
: lists[0].add(1);
: System.out.println(lists[0].get(0));
: }
: no unchecked warning
:
: SuppressWarnings

z*********e
发帖数: 10149
7
跑题问下,为什么不用List>,这么感觉好怪
L*********s
发帖数: 3063
8
你自己试一遍啊

:你确定第一句不会warning?
:Look. If you had one shot or one opportunity to seize everything you ever
wanted in one moment.
:Would you capture it or just let it slip?

【在 c********t 的大作中提到】
: 你确定第一句不会warning?
c********t
发帖数: 5706
9
有时候,比如一个String, 只有小写字母,要对每个字母打印出它所有index。
List[] element可以是null. List>就必须事先都initialized。

【在 z*********e 的大作中提到】
: 跑题问下,为什么不用List>,这么感觉好怪
c********t
发帖数: 5706
10
试了,有warning啊。

ever

【在 L*********s 的大作中提到】
: 你自己试一遍啊
:
: :你确定第一句不会warning?
: :Look. If you had one shot or one opportunity to seize everything you ever
: wanted in one moment.
: :Would you capture it or just let it slip?

L*********s
发帖数: 3063
11
确实,java的generic 真是sb,和c#没的比。

:试了,有warning啊。
:Look. If you had one shot or one opportunity to seize everything you ever
wanted in one moment.
:Would you capture it or just let it slip?

【在 c********t 的大作中提到】
: 试了,有warning啊。
:
: ever

g*c
发帖数: 4510
12
???真的么

【在 c********t 的大作中提到】
: 有时候,比如一个String, 只有小写字母,要对每个字母打印出它所有index。
: List[] element可以是null. List>就必须事先都initialized。

1 (共1页)
进入JobHunting版参与讨论
相关主题
问道leetcode的题:Combination Sum IIpermutationII ,如果不用hashset,用迭代的方法,如何防止重复
问一下,这种洋灰三角形的解法是o(n)还是o(n2)发个L家面经,攒rp
question about Leetcode #113 LeetCode – Path Sum II (Java)怎么改List>的值?
问一道leetcode上的题目 combination sum如何add to 一个list of lists
java 求助请教 print factors 这个题
问个java小白问题java的基本问题
leetcode的3sum的运行时间问题问个Java的HashSet.contains的问题
问个fb onsite题目请教一道google面试题
相关话题的讨论汇总
话题: list话题: integer话题: warning话题: java