码迷,mamicode.com
首页 > 其他好文 > 详细

transient和synchronized的使用

时间:2018-12-13 14:56:47      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:out   sleep   catch   vat   bean   ext   ransient   对象   同步   

transient和synchronized这两个关键字没什么联系,这两天用到了它们,所以总结一下,两个关键字做个伴!

transient

持久化时不被存储,当你的对象实现了Serializable接口,这个对象就可以被存储到磁盘上了,而有一些信息比较敏感时,不想被持久化,就可以声明为transient,这时它只在内存中存在,保存到磁盘时将被忽略!

public class ExcelBean implements Serializable {
  private static final long serialVersionUID = 1L;
  private String headTextName;
  private String propertyName;
  private Integer cols = 0;
  private transient XSSFCellStyle cellStyle;
 }

上面代码中,cellStyle这个复杂对象不会被文件流写到磁盘里。

synchronized

同步关键字,当你的对象被实现化后,里面的方法可能被多个线程调用,这在web环境下很常见,如果希望为方法加个锁,让方法一个一个线程排队执行,最简单的方法就是加synchronized关键字,它可以保持这个方法同一时刻只有一个线程执行它。

  /**
   * 方法强制为同步方法.
   */
  synchronized void queue() {
    try {
      System.out.println("print synchronized result:" + LocalDateTime.now().toString());
      Thread.sleep(5000);
    } catch (Exception ex) {

    }
  }

  @Test
  public void synchronizedTest() throws Exception {
    for (int i = 0; i < 5; i++) {
      new Thread(() -> queue()).start();
    }
    Thread.sleep(500000);

  }

运行的结果如下,它总会被阻塞4秒钟,没有任务两个线程打印的时间相同。

print synchronized result:2018-12-13T14:31:13.010
print synchronized result:2018-12-13T14:31:18.015
print synchronized result:2018-12-13T14:31:23.018
print synchronized result:2018-12-13T14:31:28.023
print synchronized result:2018-12-13T14:31:33.028

transient和synchronized的使用

标签:out   sleep   catch   vat   bean   ext   ransient   对象   同步   

原文地址:https://www.cnblogs.com/lori/p/10113871.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!