E***n 发帖数: 166 | 1 1.Design a card game
should have a card class, deck class, hand class.
What should be within Deck? 我说了an arraylist of cards (52张牌)
Where should the cards be created (in deck or hand)? Removed (in deck or
hand)? 我说了created in deck,removed in hand。
2。coding for shuffle念给他听,我用经典的随机数+换牌,career cup上的算法
3. Linked list v.s. arraylist
4. Disadvantage of hashtable
5. Pass by reference v.s. Pass by value
Java use which one? Primitive: pass by value; objects, pass by referenece
6. GET v.s. POST
amount of data GET can pass
amount of data POST can pass
还在等消息中 |
y***r 发帖数: 169 | |
E***n 发帖数: 166 | 3 谢谢,你也好运
【在 y***r 的大作中提到】 : bless!
|
D*********y 发帖数: 876 | |
x*********n 发帖数: 418 | 5 bless~谢谢分享
referenece
【在 E***n 的大作中提到】 : 1.Design a card game : should have a card class, deck class, hand class. : What should be within Deck? 我说了an arraylist of cards (52张牌) : Where should the cards be created (in deck or hand)? Removed (in deck or : hand)? 我说了created in deck,removed in hand。 : 2。coding for shuffle念给他听,我用经典的随机数+换牌,career cup上的算法 : 3. Linked list v.s. arraylist : 4. Disadvantage of hashtable : 5. Pass by reference v.s. Pass by value : Java use which one? Primitive: pass by value; objects, pass by referenece
|
E***n 发帖数: 166 | |
m****i 发帖数: 650 | |
d***k 发帖数: 3225 | 8 bless
thanks for sharing |
h**********d 发帖数: 4313 | 9 5. Pass by reference v.s. Pass by value
Java use which one? Primitive: pass by value; objects, pass by referenece
这个说错了吧,都是pass by value |
f*********i 发帖数: 197 | 10 LZ能不能把get and post那道题说一下
最大的传输量是多少啊 |
|
|
S******t 发帖数: 1437 | |
E***n 发帖数: 166 | 12 java always pass by value,我确实是搞错了
referenece
【在 h**********d 的大作中提到】 : 5. Pass by reference v.s. Pass by value : Java use which one? Primitive: pass by value; objects, pass by referenece : 这个说错了吧,都是pass by value
|
E***n 发帖数: 166 | 13 POST好像没有限额,但是GET是有限额的,我不知道,我搜了一下,好像是256Byte
【在 f*********i 的大作中提到】 : LZ能不能把get and post那道题说一下 : 最大的传输量是多少啊
|
q*******g 发帖数: 110 | |
f*****w 发帖数: 2602 | 15
是不是反了?
【在 E***n 的大作中提到】 : POST好像没有限额,但是GET是有限额的,我不知道,我搜了一下,好像是256Byte
|
r******n 发帖数: 363 | 16 今年amazon很容易进的。很多人拿offer,楼主宽心 |
E***n 发帖数: 166 | 17 http://stackoverflow.com/questions/340704/get-vs-post-in-html-f
看那个5号,他说there is a limit to the amount of data that can be
transferred
in a GET request.
【在 f*****w 的大作中提到】 : : 是不是反了?
|
h**********d 发帖数: 4313 | 18 限额,是指GET长度只能取决于URL吗?还是别的什么意思
【在 E***n 的大作中提到】 : POST好像没有限额,但是GET是有限额的,我不知道,我搜了一下,好像是256Byte
|
E***n 发帖数: 166 | 19
【在 h**********d 的大作中提到】 : 限额,是指GET长度只能取决于URL吗?还是别的什么意思
|
E***n 发帖数: 166 | 20 from wikipedia:
POST
Submits data to be processed (e.g., from an HTML form) to the identified
resource. The data is included in the body of the request.
我的理解是:
对于http GET,它发送回服务器的信息是嵌入在url里面的,所以GET只能发送很小一部
分数据回sever
【在 h**********d 的大作中提到】 : 限额,是指GET长度只能取决于URL吗?还是别的什么意思
|
h**********d 发帖数: 4313 | 21 明白了
identified
【在 E***n 的大作中提到】 : from wikipedia: : POST : Submits data to be processed (e.g., from an HTML form) to the identified : resource. The data is included in the body of the request. : 我的理解是: : 对于http GET,它发送回服务器的信息是嵌入在url里面的,所以GET只能发送很小一部 : 分数据回sever
|