当前位置: 首页 > news >正文

网站建设方案 云盘网站开发系统需求说明书

网站建设方案 云盘,网站开发系统需求说明书,工厂网站建设费用,在地区做网站怎么赚钱目录 单例模式两种单例写法饿汉式和懒汉式的区别 RuntimeTimer 计时器两个线程间的通信关键点#xff1a;wait()线程等待 和 notify()随机唤醒等待的线程; 三个或三个以上间的线程通信关键点#xff1a;notifyAll()唤醒所有线程 线程间通信需要注意的问题JDK1.5的新特性互斥锁… 目录 单例模式两种单例写法饿汉式和懒汉式的区别 RuntimeTimer 计时器两个线程间的通信关键点wait()线程等待 和 notify()随机唤醒等待的线程; 三个或三个以上间的线程通信关键点notifyAll()唤醒所有线程 线程间通信需要注意的问题JDK1.5的新特性互斥锁线程组的概述和使用线程的五种状态线程池的概述和使用 单例模式 单例设计模式保证类在内存中只有一个对象。 如何保证类在内存中只有一个对象呢 (1)控制类的创建不让其他类来创建本类的对象。private(2)在本类中定义一个本类的对象。Singleton s;(3)提供公共的访问方式。 public static Singleton getInstance(){return s} 两种单例写法 第一种单例写法 饿汉式 //饿汉式 class Singleton {//1、私有构造函数private Singleton() {}//2、创建本类对象private static Singleton singleton new Singleton();//3、对外提供公共的访问方法public static Singleton getInstance() { //获取实例return singleton;} }第二种单例写法 懒汉式 //懒汉式 class Singleton1 {//1、私有构造函数private Singleton1() {}//2、声明一个本类的引用private static Singleton1 singleton1;//3、对外提供公共的访问方法public static Singleton1 getInstance() { //获取实例if (singleton1 null) {singleton1 new Singleton1();}return singleton1;} }饿汉式和懒汉式的区别 1、饿汉式是空间交换时间懒汉式是时间交换空间2、在多线程访问时饿汉式不会创建多个对象而懒汉式有可能会创建多个对象 Runtime Runtime类是一个单例类可以获取运行时对象 public static void main(String[] args) throws IOException {Runtime runtime Runtime.getRuntime(); //获取运行时对象//exec在单独的进程中执行指定的字符串命令//runtime.exec(shutdown -s -t 300); //300秒后关机runtime.exec(shutdown -a); //取消关机}Timer 计时器 线程用其安排以后在后台线程中执行的任务可安排任务执行一次或者定期重复执行 public static void main(String[] args) throws IOException, InterruptedException {Timer timer new Timer();//在指定时间安排指定任务//第一个参数是安排的任务第二个参数是执行的时间执行时间需要当前年份减去1900月份范围0-11第三个参数是重复执行的间隔时间timer.schedule(new MyTimerTask(),new Date(123,7,22,13,49,30));while (true){Thread.sleep(1000);System.out.println(new Date());} }class MyTimerTask extends TimerTask {Overridepublic void run() {System.out.println(起床);} }public static void main(String[] args) throws IOException, InterruptedException {Timer timer new Timer();//在指定时间安排指定任务//第一个参数是安排的任务第二个参数是执行的时间执行时间需要当前年份减去1900月份范围0-11第三个参数是重复执行的间隔时间//下面是到了指定时间后每5秒执行一次timer.schedule(new MyTimerTask(),new Date(123,7,22,13,49,30),5000);while (true){Thread.sleep(1000);System.out.println(new Date());}}class MyTimerTask extends TimerTask {Overridepublic void run() {System.out.println(起床);} }两个线程间的通信 关键点wait()线程等待 和 notify()随机唤醒等待的线程; 1、什么时候需要通信 多个线程并发执行时, 在默认情况下CPU是随机切换线程的如果我们希望他们有规律的执行, 就可以使用通信, 例如每个线程执行一次打印 2、怎么通信 如果希望线程等待, 就调用wait()如果希望唤醒等待的线程, 就调用notify();这两个方法必须在同步代码中执行, 并且使用同步锁对象来调用 public static void main(String[] agr) {final printer p new printer();new Thread() {public void run() {while (true) {try {p.print1();} catch (InterruptedException e) {e.printStackTrace();}}}}.start();new Thread() {public void run() {while (true) {try {p.print2();} catch (InterruptedException e) {e.printStackTrace();}}}}.start();}/*** 非静态的同步方法的锁对象是this* 静态的同步方法的锁对象是该类的字节码对象*/ class printer {private int flag 1 ;public void print1() throws InterruptedException {synchronized (this) {if (flag ! 1){this.wait(); //当前线程等待}System.out.print(恩);System.out.print(施);System.out.print(大);System.out.print(峡);System.out.print(谷);System.out.print(\r\n);flag 2;this.notify(); //随机唤醒单个等待的线程}}/** 非静态同步函数的锁是:this* 静态的同步函数的锁是:字节码对象*/public void print2() throws InterruptedException {synchronized (this) {if (flag ! 2){this.wait(); //当前线程等待}System.out.print(屏);System.out.print(山);System.out.print(景);System.out.print(区);System.out.print(\r\n);flag 1 ; //改变flag的值让当前线程等待唤醒其他等待的线程this.notify(); //随机唤醒单个等待的线程}} }三个或三个以上间的线程通信 关键点notifyAll()唤醒所有线程 多个线程通信的问题 notify()方法是随机唤醒一个线程notifyAll()方法是唤醒所有线程JDK5之前无法唤醒指定的一个线程如果多个线程之间通信, 需要使用notifyAll()通知所有线程, 用while来反复判断条件 public class Synchronized {public static void main(String[] agr) {final printer p new printer();new Thread() {public void run() {while (true) {try {p.print1();} catch (InterruptedException e) {e.printStackTrace();}}}}.start();new Thread() {public void run() {while (true) {try {p.print2();} catch (InterruptedException e) {e.printStackTrace();}}}}.start();new Thread() {public void run() {while (true) {try {p.print2();} catch (InterruptedException e) {e.printStackTrace();}}}}.start();new Thread() {public void run() {while (true) {try {p.print3();} catch (InterruptedException e) {e.printStackTrace();}}}}.start();} }/*** 非静态的同步方法的锁对象是this* 静态的同步方法的锁对象是该类的字节码对象*/ class printer {private int flag 1 ;public void print1() throws InterruptedException {synchronized (this) {while (flag ! 1){this.wait(); //当前线程等待}System.out.print(恩);System.out.print(施);System.out.print(大);System.out.print(峡);System.out.print(谷);System.out.print(\r\n);flag 2;this.notifyAll(); //随机唤醒单个等待的线程}}/** 非静态同步函数的锁是:this* 静态的同步函数的锁是:字节码对象*/public void print2() throws InterruptedException {synchronized (this) {while (flag ! 2){this.wait(); //当前线程等待}System.out.print(屏);System.out.print(山);System.out.print(景);System.out.print(区);System.out.print(\r\n);flag 3 ; //改变flag的值让当前线程等待唤醒其他等待的线程this.notifyAll(); //随机唤醒单个等待的线程}}public void print3() throws InterruptedException {synchronized (this) {while (flag ! 3){ //while循环是循环判断每次都会判断标记this.wait(); //当前线程等待}System.out.print(A);System.out.print(B);System.out.print(C);System.out.print(D);System.out.print(E);System.out.print(F);System.out.print(\r\n);flag 1 ; //改变flag的值让当前线程等待唤醒其他等待的线程this.notifyAll(); //随机唤醒单个等待的线程}} } 线程间通信需要注意的问题 在同步代码块中用哪个对象锁就用哪个对象调用wait方法为什么wait方法和notify方法定义在object这个类中 因为锁对象可以是任意对象object是所有类的基类所以wait方法和notify方法定义在object这个类中sleep方法和wait方法的区别 sleep方法必须传入参数参数就是时间时间到了自动醒来 wait方法可以传入参数也可以不传入参数传入参数就是在参数的时间结束后等待不传入时间就是直接等待sleep方法在同步函数或同步代码块中不释放锁 wait方法在同步函数或者同步代码块中释放锁 JDK1.5的新特性互斥锁 1.同步 使用ReentrantLock类的lock()和unlock()方法进行同步 2.通信 使用ReentrantLock类的newCondition()方法可以获取Condition对象需要等待的时候使用Condition的await()方法, 唤醒的时候用signal()方法不同的线程使用不同的Condition, 这样就能区分唤醒的时候找哪个线程了 import java.util.concurrent.locks.Condition; import java.util.concurrent.locks.ReentrantLock;public class Synchronized {public static void main(String[] agr) {final printer p new printer();new Thread() {public void run() {while (true) {try {p.print1();} catch (InterruptedException e) {e.printStackTrace();}}}}.start();new Thread() {public void run() {while (true) {try {p.print2();} catch (InterruptedException e) {e.printStackTrace();}}}}.start();new Thread() {public void run() {while (true) {try {p.print3();} catch (InterruptedException e) {e.printStackTrace();}}}}.start();new Thread() {public void run() {while (true) {try {p.print3();} catch (InterruptedException e) {e.printStackTrace();}}}}.start();} }/*** 非静态的同步方法的锁对象是this* 静态的同步方法的锁对象是该类的字节码对象*/ class printer {private ReentrantLock r new ReentrantLock();private Condition c1 r.newCondition();private Condition c2 r.newCondition();private Condition c3 r.newCondition();private int flag 1;public void print1() throws InterruptedException {r.lock(); //获取锁if (flag ! 1) {c1.await(); //当前线程等待}System.out.print(恩);System.out.print(施);System.out.print(大);System.out.print(峡);System.out.print(谷);System.out.print(\r\n);flag 2;c2.signal();r.unlock();}/** 非静态同步函数的锁是:this* 静态的同步函数的锁是:字节码对象*/public void print2() throws InterruptedException {r.lock();if (flag ! 2) {c2.await(); //当前线程等待}System.out.print(屏);System.out.print(山);System.out.print(景);System.out.print(区);System.out.print(\r\n);flag 3; //改变flag的值让当前线程等待唤醒其他等待的线程c3.signal();r.unlock();}public void print3() throws InterruptedException {r.lock();if (flag ! 3) { c3.await(); //当前线程等待}System.out.print(A);System.out.print(B);System.out.print(C);System.out.print(D);System.out.print(E);System.out.print(F);System.out.print(\r\n);flag 1; //改变flag的值让当前线程等待唤醒其他等待的线程c1.signal();r.unlock();} } 线程组的概述和使用 A:线程组概述 Java中使用ThreadGroup来表示线程组它可以对一批线程进行分类管理Java允许程序直接对线程组进行控制。默认情况下所有的线程都属于主线程组。 public final ThreadGroup getThreadGroup()//通过线程对象获取他所属于的组public final String getName()//通过线程组对象获取他组的名字 给线程设置分组 1,ThreadGroup(String name) 创建线程组对象并给其赋值名字2,创建线程对象3,Thread(ThreadGroup?group, Runnable?target, String?name)4,设置整组的优先级或者守护线程 public class ThreadGroup {public static void main(String[] agr) {//demo1();java.lang.ThreadGroup tg new java.lang.ThreadGroup(我是一个新的线程组); //创建新的线程组MyRunnable myRunnable new MyRunnable(); //创建Runnable的子类对象Thread t1 new Thread(tg,myRunnable,张三); //将线程t1放在组中Thread t2 new Thread(tg,myRunnable,李四); //将线程t2放在组中System.out.println(t1.getThreadGroup().getName()); //获取名字System.out.println(t2.getThreadGroup().getName());//通过组名称设置后台线程表示改组的线程都是后台线程tg.setDaemon(true);}private static void demo1() {MyRunnable myRunnable new MyRunnable();Thread t1 new Thread(myRunnable, 线程1);Thread t2 new Thread(myRunnable, 线程2);java.lang.ThreadGroup tg1 t1.getThreadGroup();java.lang.ThreadGroup tg2 t2.getThreadGroup();System.out.println(tg1.getName()); //默认是主程序System.out.println(tg2.getName());} }class MyRunnable implements Runnable {Overridepublic void run() {for (int i 0; i 1000; i) {System.out.println(Thread.currentThread().getName() ..... i);}} }线程的五种状态 线程池的概述和使用 :线程池概述 程序启动一个新线程成本是比较高的因为它涉及到要与操作系统进行交互。而使用线程池可以很好的提高性能尤其是当程序中要创建大量生存期很短的线程时更应该考虑使用线程池。线程池里的每一个线程代码结束后并不会死亡而是再次回到线程池中成为空闲状态等待下一个对象来使用。在JDK5之前我们必须手动实现自己的线程池从JDK5开始Java内置支持线程池 B:内置线程池的使用概述 JDK5新增了一个Executors工厂类来产生线程池有如下几个方法 public static ExecutorService newFixedThreadPool(int nThreads)public static ExecutorService newSingleThreadExecutor()这些方法的返回值是ExecutorService对象该对象表示一个线程池可以执行Runnable对象或者Callable对象代表的线程。它提供了如下方法Future? submit(Runnable task) Future submit(Callable task) 使用步骤 创建线程池对象创建Runnable实例提交Runnable实例关闭线程池 import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors;public class Demo5_Executors {public static void main(String[] agr) {ExecutorService pool Executors.newFixedThreadPool(2); //创建线程池pool.submit(new MyRunnable()); //将线程放进线程池并执行pool.submit(new MyRunnable());pool.shutdown(); //关闭线程池} }
http://www.huolong8.cn/news/271388/

相关文章:

  • 电子商务网站建设考试试卷毕业设计网站建设英文文献
  • 网站系统管理功能互联网有什么赚钱的好项目
  • 网站备案网站室内设计相关网站
  • 网站优化怎么样做工商注册咨询电话多少
  • 深圳网站制作哪里济南兴田德润简介微信支付 网站开发
  • 西安建站平台哪个好电商网站开发定制
  • 请别人做网站需要注意什么问题佛山营销网站开发怎么选
  • 做的网站在百度找不到wordpress安装的模板文件
  • 网站建设步骤视频教程wordpress 链接重定向
  • 自适应网站做1920的公众号里的电影网站怎么做的
  • 外贸社交网站排名人社局网站建设方案
  • 效果好的网站制作公司网站建设公司推广广告语
  • 担保公司网站建设方案wordpress 搜索调用
  • 宁夏固原住房和建设局网站南宁seo按天收费
  • 众网站网络营销岗位介绍
  • 图书网站建设的规模策划书乐清网红餐厅
  • 成都网站建设方案托管软件开发app制作公司
  • 河南网站建设优化技术中国太空空间站
  • 计算机网站开发专业搜狗引擎
  • 杭州建站模板搭建优化国内访问wordpress
  • 怎么样提高网站点击率网站的哪些标签需要优化
  • 网站建设 杭州工程私人承包协议书
  • 猎奇网站源码中国十大教育培训机构有哪些
  • 只做一种产品的网站网站做后台教程
  • 常州哪家做网站便宜中国互联网头部企业
  • 用帝国cms做网站郑州纯手工seo
  • 嘉兴网站建设设计制作如何自己编写网站
  • 怎么做电商网站 用户画像网站建设到上线
  • 大连市建设学校网站网页配色方案
  • 盗号和做钓鱼网站那个罪严重wordpress拼图