赞
踩
目录
本章内容
- @Slf4j
- public class Test5 {
- public static void main(String[] args) {
- //创建sdf对象
- SimpleDateFormat sdf = new SimpleDateFormat();
- for (int i = 0; i < 10; i++) {
- new Thread(()->{
- try {
- log.debug("{}",sdf.parse("2000-11-11"));//日期格式
- } catch (ParseException e) {
- log.error("{}",e);
- }
- }).start();
- }
- }
- }
1.可以给同步代码块加上锁,这样虽然可以解决问题,但是对性能的损耗也是挺大的
2.不可变:如果一个对象在不能够修改其内部状态(属性),那么它就是线程安全的,因为不存在并发修改,这样的对象在java中有很多,如java8之后,提供了一个新的日期格式化类:
- @Slf4j
- public class Test5 {
- public static void main(String[] args) {
- //创建sdf对象
- DateTimeFormatter sdf = DateTimeFormatter.ofPattern("yyyy-MM-dd");
- for (int i = 0; i < 10; i++) {
- new Thread(()->{
- LocalDate parse = sdf.parse("2018-01-01", LocalDate::from);
- log.debug("{}",parse);
- }).start();
- }
- }
- }
- public final class String
- implements java.io.Serializable, Comparable<String>, CharSequence {
- /** The value is used for character storage. */
- private final char value[];
-
- /** Cache the hash code for the string */
- private int hash; // Default to 0
-
- // ...
-
- }
发现该类,类中的属性都是final
但是我们都知道我们使用字符串时,也有一些跟修改相关的方法,比如subString等,截取字符串的长度,那这时候字符串没有被改变嘛?是没有被改变,我们来看一下String内部是怎么设计的
- public String substring(int beginIndex) {
- if (beginIndex < 0) {
- throw new StringIndexOutOfBoundsException(beginIndex);
- }
- int subLen = value.length - beginIndex;
- if (subLen < 0) {
- throw new StringIndexOutOfBoundsException(subLen);
- }
- return (beginIndex == 0) ? this : new String(value, beginIndex, subLen);
- }
发现其内部是调用String的构造方法创建了一个新字符串,再进入这个构造看看,是否对final char[] value做了修改:
- public String(char value[], int offset, int count) {
- if (offset < 0) {
- throw new StringIndexOutOfBoundsException(offset);
- }
- if (count <= 0) {
- if (count < 0) {
- throw new StringIndexOutOfBoundsException(count);
- }
- if (offset <= value.length) {
- this.value = "".value;
- return;
- }
- }
- if (offset > value.length - count) {
- throw new StringIndexOutOfBoundsException(offset + count);
- }
- this.value = Arrays.copyOfRange(value, offset, offset+count);
- }
结果发现也没有,构造新字符串对象时,会生成新的char[] value,对内容进行复制。这种通过创建副本对象来避免共享的手段称之为【保护性拷贝】
享元模式(Flyweight Pattern)是一种结构型设计模式,用于优化多个具有相似状态或者相似对象的内存占用。
在JDK中 Boolean,Byte,Short,Integer,Long,Character 等包装类提供了 valueOf 方法,例如 Long 的 valueOf 会缓存 -128~127 之间的 Long 对象,在这个范围之间会重用对象,大于这个范围,才会新建 Long 对 象:
- public static Long valueOf(long l) {
- final int offset = 128;
- if (l >= -128 && l <= 127) { // will cache
- return LongCache.cache[(int)l + offset];
- }
- return new Long(l);
- }
注意:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。