1
hand515 2017-03-02 12:02:47 +08:00
补充:
nio hashmap 等 container concurrency 包 |
2
clearbug 2017-03-02 12:09:22 +08:00 via Android
具体点的呢
|
3
saharabear 2017-03-02 12:15:50 +08:00
java 和 javascript 的区别。
|
4
gdsagdada 2017-03-02 12:25:25 +08:00 2
工资期望多少?期望 xxxxx !好吧回去等通知吧。
|
5
AlisaDestiny 2017-03-02 12:39:46 +08:00
"你都会什么?"
“我什么都不会!!!!但是,我长得漂亮。” “明天来上班。” |
6
shawshi 2017-03-02 12:46:31 +08:00
1.hashmap 的实现
|
7
wohenyingyu02 2017-03-02 12:51:06 +08:00 via iPhone
我只问 integer 和 integer 是否相等, int 和 integer 是否相等, int 和 int 是否相等,至今无人答全对,但是还敢要 10k 工资。
|
8
NamekMaster 2017-03-02 13:03:35 +08:00
还问分布式么..一定是大神,我去面试只会问 abstract 和 interface 啥区别= =
|
9
henneko 2017-03-02 13:07:39 +08:00 via Android
有女朋友没?
|
10
linbiaye 2017-03-02 13:09:45 +08:00
能加班不
|
11
lonenol 2017-03-02 13:13:27 +08:00
男的直接拒
|
12
thisnull 2017-03-02 13:22:19 +08:00
不填三围拒绝.
什么? 男的 还填三围的. 拒绝!!! |
13
dudukee 2017-03-02 13:25:24 +08:00
@saharabear 周杰和周杰伦的区别,雷锋和雷峰塔的区别,老婆和老婆饼的区别.
|
14
zgqq 2017-03-02 13:26:02 +08:00 via Android
@NamekMaster 装逼的比较多
|
15
akira 2017-03-02 13:26:46 +08:00 1
|
16
nec 2017-03-02 13:35:23 +08:00 1
@wohenyingyu02
我大概明白你的考察点,但是你的表述不是很清楚。 关于 int 和 Integer 经典的题目是: ```java class Test { public static void main(String[] args) { Integer a = new Integer(3); Integer b = 3; // 将 3 自动装箱成 Integer 类型 int c = 3; System.out.println(a == b); // false 两个引用没有引用同一对象 System.out.println(a == c); // true a 自动拆箱成 int 类型再和 c 比较 Integer f1 = 100, f2 = 100, f3 = 150, f4 = 150; System.out.println(f1 == f2); //true System.out.println(f3 == f4); //false } } ``` 补充一下,任何面试都要考察三大基础吧:数据结构与算法+网络+操作系统 |
17
tedzhou1221 2017-03-02 13:38:14 +08:00 via iPhone
你能写出几种单例模式?
|
18
dallaslu 2017-03-02 13:54:33 +08:00
HashMap 和 HashTable 的区别……
|
19
Cbdy 2017-03-02 13:54:44 +08:00 via Android
如果我面的话我会问问看过那些书,即使提的问题答不上来,说说思路,靠谱的话也 ok 。
对了, Java 的话一般还会问问对面向对象的看法。 |
23
a1310747 OP @NamekMaster 并不是....分布式我也只用了 zookeeper+dubbo 不过面试官会往深了问 比如: dubbo 的实现原理、内部层次结构等,是否读过 dubbo 源码, zookeeper 的实现原理,如何做到事务的注册和订阅, dubbo 与 zookeeper 如何结合,是否读过 zookeeper 源码等等
|
26
Tneciv 2017-03-02 17:06:14 +08:00 via Android 1
我被问过如何用 3 种方法安装 MySQL
|
27
xiaowangge 2017-03-03 00:22:47 +08:00 via iPhone
@wohenyingyu02 核心知识点
1 、== 和 equals 方法的区别 2 、 Java caches Integer objects instances from the range -128 to 127. The reasoning is explained here: https://blogs.oracle.com/darcy/entry/boxing_and_caches_integer_valueof |
28
Lonely 2017-03-03 04:23:28 +08:00
@wohenyingyu02 你问得模糊还说没人全对
|
29
wohenyingyu02 2017-03-03 10:27:10 +08:00
@Lonely 一共 6 道判断题,你连题都没看就说模糊?
public class test { /** * @param args the command line arguments */ public static void main(String[] args) { // TODO code application logic here Integer a=2; Integer b=2; System.out.println("1. " + (a==b)); Integer c=1000; Integer d=1000; System.out.println("2. " + (c==d)); int e=1000; int f=1000; System.out.println("3. " + (e==f)); Integer g = 50; int h = 50; System.out.println("4. " + (g==h)); Integer i = 500; int j = 500; System.out.println("5. " + (i==j)); Integer k = new Integer(1); Integer l = new Integer(1); System.out.println("6. " + (k==l)); } } @nec @xiaowangge 要是来的人都和 V2EX 一样厉害估计我都失业了哈哈 |
30
GavinHao 2017-03-03 11:22:43 +08:00 via iPhone
true false true true false false 应该是吧?嘿嘿嘿 我是彩笔
|
32
thekll 2017-03-03 15:11:04 +08:00 via iPhone
通过反射访问 private 变量从业务或者应用角度来看有什么必要性?毕竟这种方式破坏了 private 的封装性。
|
33
a1310747 OP @wohenyingyu02
我对这块也才了解...刚刚去做了 11 个题目 错了三 - - Integer a = 1; Integer b = 1; Integer c = 2; Integer d = 3; Integer e = new Integer(3); Integer e1 = new Integer(3); Long f = 3L; Long f1 = new Long(3); int a1 = 1; int c1 = 2; System.out.println("1== Integer(1) ?: " + (new Integer(1) == 1)); System.out.println("a==a1 ?:" + (a==a1)); System.out.println("a==b ?:" + (a==b)); System.out.println("d==e ?:" + (d==e)); System.out.println("e1==e ?:" + (e1==e)); System.out.println("a + c == d ?:" + (a + c == d)); System.out.println("a + c == e ?:" + (a + c == e)); System.out.println("a + c == f ?:" + (a + c == f)); System.out.println("a1 + c1== f ?:" + (a1 + c1 == f)); System.out.println("a1 + c1== f1 ?:" + (a1 + c1 == f1)); System.out.println("a + c equals f ?:" + f.equals(a+c)); |
34
log4geek 2017-03-15 11:23:39 +08:00
我这边也收藏了不少面试题,分享给大伙
http://log4geek.cc/category/程序员求职 / |