- [java interview]为什么需要使用软引用 (1篇回复)
- [hashcode & equals之5重天]comparable接口与comparator接口比较异同 (1篇回复)
- [hashcode & equals之5重天]两个对象如果equals那么这两个对象的hashcode一定相等,如果两个对象的hashcode相等那么这两个对象是否一定equals? (1篇回复)
- [hashcode & equals之5重天]当改写equals()的时候,总是要改写hashCode(),为什么? (1篇回复)
- [hashcode & equals之5重天]覆写hashcode方法 (1篇回复)
- [hashcode & equals之5重天]覆写equals方法 (1篇回复)
- [hashcode & equals之5重天]何时需要重写equals() (1篇回复)
- [java interview]How can one prove that the array is notnull but empty using one line of code? (1篇回复)
- [java interview]If I do not provide any arguments on the command line, then the String array of Main method will be empty or null? (1篇回复)
- [java interview]What is the first argument of the String array in main method? (1篇回复)
- [java interview]What if I do not provide the String array as the argument to the method? (1篇回复)
- [java interview]What if I write static public void instead of public static void? (1篇回复)
- [java interview]What if the static modifier is removed from the signature of the main method? (1篇回复)
- origin如何进行fft变换? (0篇回复)
- [java interview]What if the main method is declared as private? (1篇回复)
- [Microsoft面试]有4 张红色的牌和4 张蓝色的牌,主持人先拿任意两张,再分别在A、B、C 三人额头上贴任意两张牌,A、B、C 三人都可以看见其余两人额头上的牌,看完后让他们猜自己额头上是什么颜色的牌,A 说不知道,B 说不知道,C 说不知道,然后A 说知道了。请教如何推理,A 是怎么知道的。如果用程序,又怎么实现呢? (1篇回复)
- 2010 年中兴面试题 (1篇回复)
- [Microsoft面试]题目:输入一个表示整数的字符串,把该字符串转换成整数并输出。 (1篇回复)
- \"[Microsoft面试]题目:定义Fibonacci 数列如下: / 0 n=0 f(n)= 1 n=1 \\ f(n-1)+f(n-2) n=2 输入n,用最快的方法求该数列的第n 项。\" (1篇回复)
- [Microsoft面试]题目:n 个数字(0,1,…,n-1)形成一个圆圈,从数字0 开始,每次从这个圆圈中删除第m 个数字(第一个为当前数字本身,第二个为当前数字的下一个数字)。当一个数字删除后,从被删除数字的下一个继续删除第m 个数字。求出在这个圆圈中剩下的最后一个数字。 (1篇回复)