日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > java >内容正文

java

Java必读源码

發布時間:2023/12/10 java 31 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Java必读源码 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

有能力了,必讀,看懂注釋,眼見為實

import sun.misc.Unsafe;import java.io.FileInputStream; import java.lang.reflect.Field; import java.util.*; import java.util.concurrent.*; import java.util.concurrent.atomic.AtomicInteger; import java.util.concurrent.atomic.LongAdder; import java.util.concurrent.locks.ReentrantLock; import java.util.concurrent.locks.ReentrantReadWriteLock;/*** 這些類的源碼必須看一下* Created by Cherish on 2017/3/10.*/ public class NeedToRead {public static void main(String[] args) {String string = "原來整型字面量編譯后是這樣的," +"調用了Integer.valueOf(i),可以取緩存";Boolean bool = true;Byte b = 1;Character character = 'c';Short shortI = 64;Integer integer = 127;Long l = 127L;Float f = 0.0F;Double d = 0.0;Class clazz = Class.class;StringBuilder stringBuilder = new StringBuilder(16);StringBuffer stringBuffer = new StringBuffer(16);// toStringCache 有一個toString的緩存Thread thread = new Thread();ThreadLocal threadLocal = new ThreadLocal();ThreadLocalRandom random = ThreadLocalRandom.current();//TODO 每個 TreadLocal 都只是一個鍵,它對應著 .set(value);//TODO 用它本身作為鍵去 ThreadLocalMap 中獲取 valuethreadLocal.set(random);Object o = threadLocal.get();System.out.println("o = " + o.getClass());ThreadLocal threadLocal2 = new ThreadLocal();threadLocal2.set(threadLocal);Object o1 = threadLocal2.get();System.out.println("o1.getClass() = " + o1.getClass());//TODO 數據源//TODO java.util 及 concurrent 包,認真閱讀源碼TreeMap rbTree = new TreeMap();HashMap hashMap = new HashMap(8);Iterator iterator = hashMap.entrySet().iterator();ArrayList arrayList = new ArrayList();LinkedList linkedList = new LinkedList();AbstractQueue priorityQueue = new PriorityQueue();BlockingQueue lbQueue = new LinkedBlockingQueue();ConcurrentMap concurrentMap = new ConcurrentHashMap();CopyOnWriteArrayList copyOnWriteArrayList = new CopyOnWriteArrayList();AtomicInteger atomicInteger = new AtomicInteger();LongAdder longAdder = new LongAdder();ReentrantLock lock = new ReentrantLock();ReentrantReadWriteLock readWriteLock = new ReentrantReadWriteLock();ExecutorService executorService = Executors.newFixedThreadPool(5);ForkJoinPool forkJoin = new ForkJoinPool();ExecutorService threadPoolExecutor =new ThreadPoolExecutor(5, 10, 5,TimeUnit.SECONDS, new LinkedBlockingQueue<>());FutureTask futureTask = new FutureTask<>(()-> new Random().nextInt(100));final String returnObj = "";futureTask = new FutureTask<>(() -> {}, returnObj);CompletableFuture<String> completableFuture = CompletableFuture.supplyAsync(() -> {return "Hello CompletableFuture!";});CompletableFuture future = completableFuture.thenAccept(o2 -> {System.out.println("thenAccept: " + o2);});FileInputStream fileInputStream;// 策略模式,裝飾者模式Field theUnsafe = null;try {theUnsafe = Unsafe.class.getDeclaredField("theUnsafe");theUnsafe.setAccessible(true);final Unsafe UNSAFE = (Unsafe) theUnsafe.get(null);System.out.println(UNSAFE);} catch (NoSuchFieldException | IllegalAccessException e) {e.printStackTrace();}} }

總結

以上是生活随笔為你收集整理的Java必读源码的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。