What is the thread? Java语言的一个重要特性是支持多线程的程 序设计,多线程是实现并发的一种有效手段。 线程是一个能独立执行自身指令的控制流 一个程序中可以同时运行多个相对独立的线 程,这样的程序称为多线程程序。 操作系统将CPU的执行划分为非常小的时间 片,根据一定的规则在不同的线程之间切换, 使每个线程都得到执行的机会
Classes In Java Language The class is the fundamental programming unit of the Java programming language. (类是Java 语言的基本编程单元) Classes provide the structure for objects and the mechanisms to manufacture objects from a class definition.(类提供了对象的结构,可以 根据类的定义创建对象) Each object is an instance of a class.(每一个 对象都是某个类的实例)