`

线程笔记

    博客分类:
  • java
阅读更多

Chapter 20 of Inside the Java Virtual Machine
Thread Synchronization

 

 

 

1.Java's monitor supports two kinds of thread synchronization: mutual exclusion and cooperation.

 

2.. On a Java virtual machine implementation that doesn't time slice, however, a higher priority thread that is never blocked will interfere with any lower priority threads, even if none of the threads share data.

 

3.The form of monitor used by the Java virtual machine is called a "Wait and Notify" monitor.

 

4.monitor 模型

 

 

5.The Java virtual machine offers two kinds of notify commands: "notify" and "notify all." A notify command selects one thread arbitrarily from the wait set and marks it for eventual resurrection. A notify all command marks all threads currently in the wait set for eventual resurrection.

 

6.To a great extent, the manner in which a Java virtual machine implementation selects the next thread from the wait or entry sets is a decision of individual implementation designers.平台不同性

 

 

7.Java programs need to coordinate multi-threaded access to two kinds of data: o instance variables, which are stored on the heap o class variables, which are stored in the method area Programs never need to coordinate access to local variables, which reside on Java stacks, because data on the Java stack is private to the thread to which the Java stack belongs.

 

 

8. In Java, there are two kinds of monitor regions: synchronized statements and synchronized methods.

 

9.Note that as a Java programmer, you never explicitly lock an object. Object locks are internal to the Java virtual machine

 

 

分享到:
评论

相关推荐

    Java多线程笔记

    Java多线程笔记 Java多线程笔记是 Java 编程语言中关于多线程编程的笔记,涵盖了线程基础知识、线程优先级、线程状态、守护线程、构造线程、线程中断等多方面的内容。 获取简单 main 程序中的线程 在 Java 中,...

    马士兵多线程笔记.zip

    以下是对马士兵多线程笔记的详细解析。 1. **多线程基础**:多线程是指一个应用程序中同时执行多个线程(即任务)的能力。这种并发执行可以提高系统资源的利用率,提升程序的响应速度和执行效率,特别是在多核...

    java多线程笔记

    Java线程的知识点总结。doc

    C# 多线程笔记和示例讲解

    以下是对"C#多线程笔记"中可能包含的知识点的详细解释。 1. **线程基础**: - **什么是线程**:线程是程序执行的最小单元,每个进程至少有一个线程,负责执行程序代码。 - **主线程与子线程**:主线程是程序的...

    进程线程笔记

    深圳华清远见学习的时候做的进程线程笔记,很有用,比较详细

    java多线程笔记全手打

    通过阅读`多线程笔记.doc`和运行`threadDemo`示例代码,你可以对Java多线程有更深入的理解,并能够在实际项目中灵活运用这些知识,解决并发问题。同时,博客地址提供了更多详细内容,可以帮助你进一步探索和实践。

    多线程笔记.md

    多线程笔记

    java多线程笔记分享

    java多线程笔记分享

    进程线程笔记.c

    进程线程笔记.c

    线程笔记.xls

    多线程笔记,学习多线程的可以看看,希望对你有帮助。

    多线程笔记

    ### 多线程基础知识与应用 #### 一、线程的创建方式 在Java中,创建线程主要有两种方式:一种是通过继承`Thread`类;另一种是通过实现`Runnable`接口。 1. **继承Thread类** ```java public class MyThread ...

    10.8-10.9马老师多线程笔记synchronized .md

    10.8-10.9马老师多线程笔记synchronized .md

    Python3 多线程笔记

    ### Python3多线程知识点详解 #### 一、线程基础 **线程状态** 在探讨Python3中的多线程之前,我们首先需要理解线程的基本状态及其转换过程。 - **新建**: 当一个线程被创建后,它最初处于新建状态。 - **就绪**...

    C#多线程笔记学习指南

    本篇笔记将深入探讨C#多线程的基本概念、操作方法以及注意事项。 首先,我们要理解多线程的基本概念。线程是程序执行的最小单位,每个线程都有自己的执行路径和栈空间,但它们共享同一块堆内存。因此,线程间的通信...

    C#多线程笔记

    ### C#多线程知识点详解 #### 一、线程与窗体间的交互 在C#编程中,每个窗体通常都运行在一个独立的线程上。这意味着如果一个应用程序包含多个窗体,那么这些窗体将分别运行在各自的线程之上。当需要实现不同窗体...

    线程笔记(多线程,异常)

    线程是并发编程中的基本单位,它允许程序在同一时间处理多个任务。在.NET框架中,线程的管理和同步是至关重要的。以下是对标题和描述中提到的线程相关知识点的详细解释: 1. **Interrupt方法**:在.NET中,`Thread....

    java线程笔记

    以上就是关于"java线程笔记"中的主要知识点,涵盖了线程的创建、同步、单例模式、锁机制、线程通信以及线程池等方面,这些都是Java并发编程的基础和核心。通过深入理解并熟练运用这些概念,可以编写出高效、稳定的多...

    多线程笔记.docx

    Java多线程是Java编程中不可或缺的部分,它允许程序同时执行多个任务,从而提升程序的效率和CPU的利用率。在Java中,线程是程序执行的最小单位,而进程则是资源分配的基本单位。一个进程可以包含一个或多个线程,...

Global site tag (gtag.js) - Google Analytics