博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JAVA多线程和并发基础面试问答
阅读量:5025 次
发布时间:2019-06-12

本文共 1748 字,大约阅读时间需要 5 分钟。

wait()、notify()和notifyAll()是Object类中的方法:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/**
 
* Wakes up a single thread that is waiting on this object's
 
* monitor. If any threads are waiting on this object, one of them
 
* is chosen to be awakened. The choice is arbitrary and occurs at
 
* the discretion of the implementation. A thread waits on an object's
 
* monitor by calling one of the wait methods
 
*/
public 
final 
native 
void 
notify();
 
/**
 
* Wakes up all threads that are waiting on this object's monitor. A
 
* thread waits on an object's monitor by calling one of the
 
* wait methods.
 
*/
public 
final 
native 
void 
notifyAll();
 
/**
 
* Causes the current thread to wait until either another thread invokes the
 
* {@link java.lang.Object#notify()} method or the
 
* {@link java.lang.Object#notifyAll()} method for this object, or a
 
* specified amount of time has elapsed.
 
* <p>
 
* The current thread must own this object's monitor.
 
*/
public 
final 
native 
void 
wait(
long 
timeout) 
throws 
InterruptedException;

   从这三个方法的文字描述可以知道以下几点信息:

  1)wait()、notify()和notifyAll()方法是本地方法,并且为final方法,无法被重写。

  2)调用某个对象的wait()方法能让当前线程阻塞,并且当前线程必须拥有此对象的monitor(即锁)

  3)调用某个对象的notify()方法能够唤醒一个正在等待这个对象的monitor的线程,如果有多个线程都在等待这个对象的monitor,则只能唤醒其中一个线程;

  4)调用notifyAll()方法能够唤醒所有正在等待这个对象的monitor的线程;

 

 

1. 进程和线程之间有什么不同?

一个进程是一个独立(self contained)的运行环境,它可以被看作一个程序或者一个应用。而线程是在进程中执行的一个任务。Java运行环境是一个包含了不同的类和程序的单一进程。线程可以被称为轻量级进程。线程需要较少的资源来创建和驻留在进程中,并且可以共享进程中的资源。

2. 多线程编程的好处是什么?

在多线程程序中,多个线程被并发的执行以提高程序的效率,CPU不会因为某个线程需要等待资源而进入空闲状态。多个线程共享堆内存(heap memory),因此创建多个线程去执行一些任务会比创建多个进程更好。举个例子,Servlets比CGI更好,是因为Servlets支持多线程而CGI不支持。

 

17. volatile关键字在Java中有什么作用?

当我们使用volatile关键字去修饰变量的时候,所以线程都会直接读取该变量并且不缓存它。这就确保了线程读取到的变量是同内存中是一致的。

转载于:https://www.cnblogs.com/yaowen/p/4849681.html

你可能感兴趣的文章
Sizeof与Strlen的区别与联系
查看>>
hadoop2.2.0_hbase0.96_zookeeper3.4.5全分布式安装文档下载
查看>>
Flutter 贝塞尔曲线切割
查看>>
golang 的编译安装以及supervisord部署
查看>>
easyui源码翻译1.32--Dialog(对话框窗口)
查看>>
阿里架构师,讲述基于微服务的软件架构模式
查看>>
Eclipse导入maven项目时,Pom.xml文件报错处理方法
查看>>
01、JAVA开发准备
查看>>
asp.net mvc 错误处理 - 自定义报错处理,生成错误日志
查看>>
Linux centos ssh
查看>>
R语言之避免for循环示例
查看>>
[转]jQuery 选择器和dom操作
查看>>
Jenkins+Maven+SVN快速搭建持续集成环境(转)
查看>>
bootstrap 媒体查询
查看>>
杜教筛
查看>>
《Ext JS模板与组件基本知识框架图----模板》
查看>>
txmpp
查看>>
微信开发时调用jssdk,在安卓设备中成功调用;在ios设备中返回错误消息:config fail,无其他具体错误消息,且接口权限显示获取ok,无法调用...
查看>>
【Github教程】史上最全github使用方法:github入门到精通
查看>>
抽象工厂模式(Abstract Factory)
查看>>