
面试
Abner_Niu
这个作者很懒,什么都没留下…
展开
-
为什么要读写技术博客、参与github,stackoverflow
一个领域内的专家级别人物con原创 2014-06-14 16:10:21 · 751 阅读 · 0 评论 -
简历的问题
就我知道的程序员,其简历原创 2014-06-15 23:33:13 · 501 阅读 · 0 评论 -
一道String拼接的考题
When doing string concatenation for many times in a loop, which is the fastest way in terms of executing time:A) The concat() method of StringB) The + operator of StringC) The append() method of原创 2015-08-14 12:09:40 · 1130 阅读 · 0 评论 -
一道有关数据类型的笔试题
题目There are 4 variables: short v1 = 18; Long v2 = new Long("18"); Long v3 = new Long(18); Short v4 = new Short(v1);Which of the following statements are true:原创 2015-08-14 14:29:52 · 809 阅读 · 0 评论