Java岗 面试考点精讲(基础篇01期)
即将到来金三银四人才招聘的高峰期,渴望跳槽的朋友肯定跟我一样四处找以往的面试题,但又感觉找的又不完整,在这里我将把我所见到的题目做一总结,并尽力将答案术语化、标准化。预祝大家面试顺利。
术语会让你的面试更有说服力,让你感觉更踏实,建议大家多记背点术语。
1. 简单说下什么是跨平台
术语:操作系统指令集、屏蔽系统之间的差异
由于各种操作系统所支持的指令集不是完全一致,所以在操作系统之上加个虚拟机可以来提供统一接口,屏蔽系统之间的差异。
2. java有几种基本数据类型
有八种基本数据类型。
数据类型 | 字节 | 默认值 |
---|---|---|
byte | 1 | 0 |
short | 2 | 0 |
int | 4 | 0 |
long | 8 | 0 |
float | 4 | 0.0f |
double | 8 | 0.0d |
char | 2 | 'u0000' |
boolean | 4 | false |
各自占用几字节也记一下。
3. 面向对象特征
面向对象的编程语言有封装、继承 、抽象、多态等4个主要的特征。
-
封装: 把描述一个对象的属性和行为的代码封装在一个模块中,也就是一个类中,属性用变量定义,行为用方法进行定义,方法可以直接访问同一个对象中的属性。
-
抽象: 把现实生活中的对象抽象为类。分为过程抽象和数据抽象
-
数据抽象 -->鸟有翅膀,羽毛等(类的属性)
-
过程抽象 -->鸟会飞,会叫(类的方法)
-
继承:子类继承父类的特征和行为。子类可以有父类的方法,属性(非private)。子类也可以对父类进行扩展,也可以重写父类的方法。缺点就是提高代码之间的耦合性。
-
多态: 多态是指程序中定义的引用变量所指向的具体类型和通过该引用变量发出的方法调用在编程时并不确定,而是在程序运行期间才确定(比如:向上转型,只有运行才能确定其对象属性)。方法覆盖和重载体现了多态性。
4. 为什么要有包装类型
术语:让基本类型也具有对象的特征
基本类型 | 包装器类型 |
---|---|
boolean | boolean |
char | character |
int | integer |
byte | byte |
short | short |
long | long |
float | float |
double | double |
为了让基本类型也具有对象的特征,就出现了包装类型(如我们在使用集合类型collection时就一定要使用包装类型而非基本类型)因为容器都是装object的,这是就需要这些基本类型的包装器类了。
自动装箱:new integer(6);
,底层调用:integer.valueof(6)
自动拆箱: int i = new integer(6);
,底层调用i.intvalue();
方法实现。
1 integer i = 6; 2 integer j = 6; 3 system.out.println(i==j);
答案在下面这段代码中找:
1 public static integer valueof(int i) { 2 if (i >= integercache.low && i <= integercache.high) 3 return integercache.cache[i + (-integercache.low)]; 4 return new integer(i); 5 }
二者的区别:
-
声明方式不同:基本类型不使用new关键字,而包装类型需要使用new关键字来在堆中分配存储空间;
-
存储方式及位置不同:基本类型是直接将变量值存储在栈中,而包装类型是将对象放在堆中,然后通过引用来使用;
-
初始值不同:基本类型的初始值如int为0,boolean为false,而包装类型的初始值为null;
-
使用方式不同:基本类型直接赋值直接使用就好,而包装类型在集合如collection、map时会使用到。
5. ==和equals区别
-
==
较的是两个引用在内存中指向的是不是同一对象(即同一内存空间),也就是说在内存空间中的存储位置是否一致。如果两个对象的引用相同时(指向同一对象时),“==”操作符返回true,否则返回flase。 -
equals
用来比较某些特征是否一样。我们平时用的string类等的equals方法都是重写后的,实现比较两个对象的内容是否相等。
我们来看看string重写的equals方法:
它不止判断了内存地址,还增加了字符串是否相同的比较。
1 public boolean equals(object anobject) { 2 //判断内存地址是否相同 3 if (this == anobject) { 4 return true; 5 } 6 // 判断参数类型是否是string类型 7 if (anobject instanceof string) { 8 // 强转 9 string anotherstring = (string)anobject; 10 int n = value.length; 11 // 判断两个字符串长度是否相等 12 if (n == anotherstring.value.length) { 13 char v1[] = value; 14 char v2[] = anotherstring.value; 15 int i = 0; 16 // 一一比较 字符是否相同 17 while (n-- != 0) { 18 if (v1[i] != v2[i]) 19 return false; 20 i++; 21 } 22 return true; 23 } 24 } 25 return false; 26 }
6. string、stringbuffer和stringbuilder区别
java中string、stringbuffer、stringbuilder是编程中经常使用的字符串类,他们之间的区别也是经常在面试中会问到的问题。现在总结一下,看看他们的不同与相同。
1. 数据可变和不可变
-
string
底层使用一个不可变的字符数组private final char value[];
所以它内容不可变。 -
stringbuffer
和stringbuilder
都继承了abstractstringbuilder
底层使用的是可变字符数组:char[] value;
2. 线程安全
-
stringbuilder
是线程不安全的,效率较高;而stringbuffer
是线程安全的,效率较低。
通过他们的append()
方法来看,stringbuffer
是有同步锁,而stringbuilder
没有:
1 @override 2 public synchronized stringbuffer append(object obj) { 3 tostringcache = null; 4 super.append(string.valueof(obj)); 5 return this; 6 }
7 @override 8 public stringbuilder append(string str) { 9 super.append(str); 10 return this; 11 }
3. 相同点
stringbuilder
与stringbuffer
有公共父类abstractstringbuilder
。
最后,操作可变字符串速度:stringbuilder > stringbuffer > string
,这个答案就显得不足为奇了。
7. 讲一下java中的集合
-
collection下:list系(有序、元素允许重复)和set系(无序、元素不重复)
set根据equals和hashcode判断,一个对象要存储在set中,必须重写equals和hashcode方法
-
map下:hashmap线程不同步;treemap线程同步
-
collection系列和map系列:map是对collection的补充,两个没什么关系
8. arraylist和linkedlist区别?
之前专门有写过arraylist和linkedlist源码的文章。
-
arraylist是实现了基于动态数组的数据结构,linkedlist基于链表的数据结构。
-
对于随机访问get和set,arraylist觉得优于linkedlist,因为linkedlist要移动指针。
-
对于新增和删除操作add和remove,linedlist比较占优势,因为arraylist要移动数据。
9. concurrentmodificationexception异常出现的原因
1 public class test { 2 public static void main(string[] args) { 3 arraylist<integer> list = new arraylist<integer>(); 4 list.add(2); 5 iterator<integer> iterator = list.iterator(); 6 while(iterator.hasnext()){ 7 integer integer = iterator.next(); 8 if(integer==2) 9 list.remove(integer); 10 } 11 } 12 }
执行上段代码是有问题的,会抛出concurrentmodificationexception
异常。
原因:调用list.remove()
方法导致modcount
和expectedmodcount
的值不一致。
1 final void checkforcomodification() { 2 if (modcount != expectedmodcount) 3 throw new concurrentmodificationexception(); 4 }
解决办法:在迭代器中如果要删除元素的话,需要调用iterator
类的remove
方法。
1 public class test { 2 public static void main(string[] args) { 3 arraylist<integer> list = new arraylist<integer>(); 4 list.add(2); 5 iterator<integer> iterator = list.iterator(); 6 while(iterator.hasnext()){ 7 integer integer = iterator.next(); 8 if(integer==2) 9 iterator.remove(); //注意这个地方 10 } 11 } 12 }
10. hashmap和hashtable、concurrenthashmap区别?
相同点:
-
hashmap和hashtable都实现了map接口
-
都可以存储key-value数据
不同点:
-
hashmap可以把null作为key或value,hashtable不可以
-
hashmap线程不安全,效率高。hashtable线程安全,效率低。
-
hashmap的迭代器(iterator)是fail-fast迭代器,而hashtable的enumerator迭代器不是fail-fast的。
什么是fail-fast?
就是最快的时间能把错误抛出而不是让程序执行。
10.2 如何保证线程安全又效率高?
java 5提供了concurrenthashmap,它是hashtable的替代,比hashtable的扩展性更好。
concurrenthashmap将整个map分为n个segment(类似hashtable),可以提供相同的线程安全,但是效率提升n倍,默认n为16。
10.3 我们能否让hashmap同步?
hashmap可以通过下面的语句进行同步:map m = collections.synchronizemap(hashmap);
11. 拷贝文件的工具类使用字节流还是字符流
答案:字节流
11.1 什么是字节流,什么是字符流?
字节流:传递的是字节(二进制),
字符流:传递的是字符
11.2 答案
我们并不支持下载的文件有没有包含字节流(图片、影像、音源),所以考虑到通用性,我们会用字节流。
12. 线程创建方式
这个之前自己做过总结,也算比较全面。
方法一:继承thread类,作为线程对象存在(继承thread对象)
1 public class creatthreaddemo1 extends thread{ 2 /** 3 * 构造方法: 继承父类方法的thread(string name);方法 4 * @param name 5 */ 6 public creatthreaddemo1(string name){ 7 super(name); 8 } 9 10 @override 11 public void run() { 12 while (!interrupted()){ 13 system.out.println(getname()+"线程执行了..."); 14 try { 15 thread.sleep(200); 16 } catch (interruptedexception e) { 17 e.printstacktrace(); 18 } 19 } 20 } 21 22 public static void main(string[] args) { 23 creatthreaddemo1 d1 = new creatthreaddemo1("first"); 24 creatthreaddemo1 d2 = new creatthreaddemo1("second"); 25 26 d1.start(); 27 d2.start(); 28 29 d1.interrupt(); //中断第一个线程 30 } 31 }
常规方法,不多做介绍了,interrupted方法,是来判断该线程是否被中断。(终止线程不允许用stop方法,该方法不会施放占用的资源。所以我们在设计程序的时候,要按照中断线程的思维去设计,就像上面的代码一样)。
让线程等待的方法
-
thread.sleep(200); //线程休息2ms
-
object.wait(); //让线程进入等待,直到调用object的notify或者notifyall时,线程停止休眠
方法二:实现runnable接口,作为线程任务存在
1 public class creatthreaddemo2 implements runnable { 2 @override 3 public void run() { 4 while (true){ 5 system.out.println("线程执行了..."); 6 } 7 } 8 9 public static void main(string[] args) { 10 //将线程任务传给线程对象 11 thread thread = new thread(new creatthreaddemo2()); 12 //启动线程 13 thread.start(); 14 } 15 }
runnable 只是来修饰线程所执行的任务,它不是一个线程对象。想要启动runnable对象,必须将它放到一个线程对象里。
方法三:匿名内部类创建线程对象
1 public class creatthreaddemo3 extends thread{ 2 public static void main(string[] args) { 3 //创建无参线程对象 4 new thread(){ 5 @override 6 public void run() { 7 system.out.println("线程执行了..."); 8 } 9 }.start(); 10 //创建带线程任务的线程对象 11 new thread(new runnable() { 12 @override 13 public void run() { 14 system.out.println("线程执行了..."); 15 } 16 }).start(); 17 //创建带线程任务并且重写run方法的线程对象 18 new thread(new runnable() { 19 @override 20 public void run() { 21 system.out.println("runnable run 线程执行了..."); 22 } 23 }){ 24 @override 25 public void run() { 26 system.out.println("override run 线程执行了..."); 27 } 28 }.start(); 29 } 30 31 }
创建带线程任务并且重写run方法的线程对象中,为什么只运行了thread的run方法。我们看看thread类的源码,
,我们可以看到thread实现了runnable接口,而runnable接口里有一个run方法。
所以,我们最终调用的重写的方法应该是thread类的run方法。而不是runnable接口的run方法。
方法四:创建带返回值的线程
1 public class creatthreaddemo4 implements callable { 2 public static void main(string[] args) throws executionexception, interruptedexception { 3 creatthreaddemo4 demo4 = new creatthreaddemo4(); 4 5 futuretask<integer> task = new futuretask<integer>(demo4); //futuretask最终实现的是runnable接口 6 7 thread thread = new thread(task); 8 9 thread.start(); 10 11 system.out.println("我可以在这里做点别的业务逻辑...因为futuretask是提前完成任务"); 12 //拿出线程执行的返回值 13 integer result = task.get(); 14 system.out.println("线程中运算的结果为:"+result); 15 } 16 17 //重写callable接口的call方法 18 @override 19 public object call() throws exception { 20 int result = 1; 21 system.out.println("业务逻辑计算中..."); 22 thread.sleep(3000); 23 return result; 24 } 25 } 26 callable接口介绍: 27 28 public interface callable<v> { 29 /** 30 * computes a result, or throws an exception if unable to do so. 31 * 32 * @return computed result 33 * @throws exception if unable to compute a result 34 */ 35 v call() throws exception; 36 }
返回指定泛型的call方法。然后调用futuretask对象的get方法得道call方法的返回值。
方法五:定时器timer
1 public class creatthreaddemo5 { 2 3 public static void main(string[] args) { 4 timer timer = new timer(); 5 6 timer.schedule(new timertask() { 7 @override 8 public void run() { 9 system.out.println("定时器线程执行了..."); 10 } 11 },0,1000); //延迟0,周期1s 12 13 } 14 }
方法六:线程池创建线程
1 public class creatthreaddemo6 { 2 public static void main(string[] args) { 3 //创建一个具有10个线程的线程池 4 executorservice threadpool = executors.newfixedthreadpool(10); 5 long threadpoolusetime = system.currenttimemillis(); 6 for (int i = 0;i<10;i++){ 7 threadpool.execute(new runnable() { 8 @override 9 public void run() { 10 system.out.println(thread.currentthread().getname()+"线程执行了..."); 11 } 12 }); 13 } 14 long threadpoolusetime1 = system.currenttimemillis(); 15 system.out.println("多线程用时"+(threadpoolusetime1-threadpoolusetime)); 16 //销毁线程池 17 threadpool.shutdown(); 18 threadpoolusetime = system.currenttimemillis(); 19 } 20 21 }
方法七:利用java8新特性 stream 实现并发
lambda表达式不懂的,可以看看我的java8新特性文章:
java8-lambda:
https://www.jianshu.com/p/3a08dc78a05f
java8-stream:
https://www.jianshu.com/p/ea16d6712a00
1 public class creatthreaddemo7 { 2 public static void main(string[] args) { 3 list<integer> values = arrays.aslist(10,20,30,40); 4 //parallel 平行的,并行的 5 int result = values.parallelstream().maptoint(p -> p*2).sum(); 6 system.out.println(result); 7 //怎么证明它是并发处理呢 8 values.parallelstream().foreach(p-> system.out.println(p)); 9 } 10 }
输出:
200
40
10
20
30
怎么证明它是并发处理呢,他们并不是按照顺序输出的 。
文集介绍
该专题分为java基础、计算机网络、操作系统、数据结构、算法精读、数据库面试题、框架面试题、服务高可用、分布式事务、分布式锁、消息队列等部分,尽量将全网的面试题一网打尽,方便大家手机阅读和收藏。
每篇会精讲18个问题,数量可以商讨,评论区见。