您好,登錄后才能下訂單哦!
這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)碛嘘P(guān)什么是ThreadLocal,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
ThreadLocal的官方API解釋為:
* This class provides thread-local variables. These variables differ from * their normal counterparts in that each thread that accesses one (via its * {@code get} or {@code set} method) has its own, independently initialized * copy of the variable. {@code ThreadLocal} instances are typically private * static fields in classes that wish to associate state with a thread (e.g., * a user ID or Transaction ID).
這個(gè)類提供線程局部變量。這些變量與正常的變量不同,每個(gè)線程訪問一個(gè)(通過它的get或set方法)都有它自己的、獨(dú)立初始化的變量副本。ThreadLocal實(shí)例通常是類中的私有靜態(tài)字段,希望將狀態(tài)與線程關(guān)聯(lián)(例如,用戶ID或事務(wù)ID)。
1、當(dāng)使用ThreadLocal維護(hù)變量時(shí),ThreadLocal為每個(gè)使用該變量的線程提供獨(dú)立的變量副本, 所以每一個(gè)線程都可以獨(dú)立地改變自己的副本,而不會(huì)影響其它線程所對(duì)應(yīng)的副本 2、使用ThreadLocal通常是定義為 private static ,更好是 private final static 3、Synchronized用于線程間的數(shù)據(jù)共享,而ThreadLocal則用于線程間的數(shù)據(jù)隔離 4、ThreadLocal類封裝了getMap()、Set()、Get()、Remove()4個(gè)核心方法
從表面上來看ThreadLocal內(nèi)部是封閉了一個(gè)Map數(shù)組,來實(shí)現(xiàn)對(duì)象的線程封閉,map的key就是當(dāng)前的線程id,value就是我們要存儲(chǔ)的對(duì)象。
實(shí)際上是ThreadLocal的靜態(tài)內(nèi)部類ThreadLocalMap為每個(gè)Thread都維護(hù)了一個(gè)數(shù)組table,hreadLocal確定了一個(gè)數(shù)組下標(biāo),而這個(gè)下標(biāo)就是value存儲(chǔ)的對(duì)應(yīng)位置,繼承自弱引用,用來保存ThreadLocal和Value之間的對(duì)應(yīng)關(guān)系,之所以用弱引用,是為了解決線程與ThreadLocal之間的強(qiáng)綁定關(guān)系,會(huì)導(dǎo)致如果線程沒有被回收,則GC便一直無法回收這部分內(nèi)容。
//set方法 public void set(T value) { //獲取當(dāng)前線程 Thread t = Thread.currentThread(); //實(shí)際存儲(chǔ)的數(shù)據(jù)結(jié)構(gòu)類型 ThreadLocalMap map = getMap(t); //判斷map是否為空,如果有就set當(dāng)前對(duì)象,沒有創(chuàng)建一個(gè)ThreadLocalMap //并且將其中的值放入創(chuàng)建對(duì)象中 if (map != null) map.set(this, value); else createMap(t, value); } //get方法 public T get() { //獲取當(dāng)前線程 Thread t = Thread.currentThread(); //實(shí)際存儲(chǔ)的數(shù)據(jù)結(jié)構(gòu)類型 ThreadLocalMap map = getMap(t); if (map != null) { //傳入了當(dāng)前線程的ID,到底層Map Entry里面去取 ThreadLocalMap.Entry e = map.getEntry(this); if (e != null) { @SuppressWarnings("unchecked") T result = (T)e.value; return result; } } return setInitialValue(); } //remove方法 public void remove() { ThreadLocalMap m = getMap(Thread.currentThread()); if (m != null) m.remove(this);//調(diào)用ThreadLocalMap刪除變量 } //ThreadLocalMap中g(shù)etEntry方法 private Entry getEntry(ThreadLocal<?> key) { int i = key.threadLocalHashCode & (table.length - 1); Entry e = table[i]; if (e != null && e.get() == key) return e; else return getEntryAfterMiss(key, i, e); } //getMap()方法 ThreadLocalMap getMap(Thread t) { //Thread中維護(hù)了一個(gè)ThreadLocalMap return t.threadLocals; } //setInitialValue方法 private T setInitialValue() { T value = initialValue(); Thread t = Thread.currentThread(); ThreadLocalMap map = getMap(t); if (map != null) map.set(this, value); else createMap(t, value); return value; } //createMap()方法 void createMap(Thread t, T firstValue) { //實(shí)例化一個(gè)新的ThreadLocalMap,并賦值給線程的成員變量threadLocals t.threadLocals = new ThreadLocalMap(this, firstValue); }
從上面源碼中我們看到不管是 set() get() remove() 他們都是操作ThreadLocalMap這個(gè)靜態(tài)內(nèi)部類的,每一個(gè)新的線程Thread都會(huì)實(shí)例化一個(gè)ThreadLocalMap并賦值給成員變量threadLocals,使用時(shí)若已經(jīng)存在threadLocals則直接使用已經(jīng)存在的對(duì)象
獲取當(dāng)前線程對(duì)應(yīng)的ThreadLocalMap
如果當(dāng)前ThreadLocal對(duì)象對(duì)應(yīng)的Entry還存在,并且返回對(duì)應(yīng)的值
如果獲取到的ThreadLocalMap為null,則證明還沒有初始化,就調(diào)用setInitialValue()方法
獲取當(dāng)前線程,根據(jù)當(dāng)前線程獲取對(duì)應(yīng)的ThreadLocalMap
如果對(duì)應(yīng)的ThreadLocalMap不為null,則調(diào)用set方法保存對(duì)應(yīng)關(guān)系
如果為null,創(chuàng)建一個(gè)并保存k-v關(guān)系
獲取當(dāng)前線程,根據(jù)當(dāng)前線程獲取對(duì)應(yīng)的ThreadLocalMap
如果對(duì)應(yīng)的ThreadLocalMap不為null,則調(diào)用ThreadLocalMap中的remove方法,根據(jù)key.threadLocalHashCode & (len-1)獲取當(dāng)前下標(biāo)并移除
成功后調(diào)用expungeStaleEntry進(jìn)行一次連續(xù)段清理
ThreadLocalMap是ThreadLocal的一個(gè)內(nèi)部類
static class ThreadLocalMap { /** * 自定義一個(gè)Entry類,并繼承自弱引用 * 同時(shí)讓ThreadLocal和儲(chǔ)值形成key-value的關(guān)系 * 之所以用弱引用,是為了解決線程與ThreadLocal之間的強(qiáng)綁定關(guān)系 * 會(huì)導(dǎo)致如果線程沒有被回收,則GC便一直無法回收這部分內(nèi)容 * */ static class Entry extends WeakReference<ThreadLocal<?>> { /** The value associated with this ThreadLocal. */ Object value; Entry(ThreadLocal<?> k, Object v) { super(k); value = v; } } /** * Entry數(shù)組的初始化大?。ǔ跏蓟L度16,后續(xù)每次都是2倍擴(kuò)容) */ private static final int INITIAL_CAPACITY = 16; /** * 根據(jù)需要調(diào)整大小 * 長度必須是2的N次冪 */ private Entry[] table; /** * The number of entries in the table. * table中的個(gè)數(shù) */ private int size = 0; /** * The next size value at which to resize. * 下一個(gè)要調(diào)整大小的大小值(擴(kuò)容的閾值) */ private int threshold; // Default to 0 /** * Set the resize threshold to maintain at worst a 2/3 load factor. * 根據(jù)長度計(jì)算擴(kuò)容閾值 * 保持一定的負(fù)債系數(shù) */ private void setThreshold(int len) { threshold = len * 2 / 3; } /** * Increment i modulo len * nextIndex:從字面意思我們可以看出來就是獲取下一個(gè)索引 * 獲取下一個(gè)索引,超出長度則返回 */ private static int nextIndex(int i, int len) { return ((i + 1 < len) ? i + 1 : 0); } /** * Decrement i modulo len. * 返回上一個(gè)索引,如果-1為負(fù)數(shù),返回長度-1的索引 */ private static int prevIndex(int i, int len) { return ((i - 1 >= 0) ? i - 1 : len - 1); } /** * ThreadLocalMap構(gòu)造方法 * ThreadLocalMaps是延遲構(gòu)造的,因此只有在至少要放置一個(gè)節(jié)點(diǎn)時(shí)才創(chuàng)建一個(gè) */ ThreadLocalMap(ThreadLocal<?> firstKey, Object firstValue) { //內(nèi)部成員數(shù)組,INITIAL_CAPACITY值為16的常量 table = new Entry[INITIAL_CAPACITY]; //通過threadLocalHashCode(HashCode) & (長度-1)的位運(yùn)算,確定鍵值對(duì)的位置 //位運(yùn)算,結(jié)果與取模相同,計(jì)算出需要存放的位置 int i = firstKey.threadLocalHashCode & (INITIAL_CAPACITY - 1); // 創(chuàng)建一個(gè)新節(jié)點(diǎn)保存在table當(dāng)中 table[i] = new Entry(firstKey, firstValue); //設(shè)置table元素為1 size = 1; //根據(jù)長度計(jì)算擴(kuò)容閾值 setThreshold(INITIAL_CAPACITY); } /** * 構(gòu)造一個(gè)包含所有可繼承ThreadLocals的新映射,只能createInheritedMap調(diào)用 * ThreadLocal本身是線程隔離的,一般來說是不會(huì)出現(xiàn)數(shù)據(jù)共享和傳遞的行為 */ private ThreadLocalMap(ThreadLocalMap parentMap) { Entry[] parentTable = parentMap.table; int len = parentTable.length; setThreshold(len); table = new Entry[len]; for (int j = 0; j < len; j++) { Entry e = parentTable[j]; if (e != null) { @SuppressWarnings("unchecked") ThreadLocal<Object> key = (ThreadLocal<Object>) e.get(); if (key != null) { Object value = key.childValue(e.value); Entry c = new Entry(key, value); int h = key.threadLocalHashCode & (len - 1); while (table[h] != null) h = nextIndex(h, len); table[h] = c; size++; } } } } /** * ThreadLocalMap中g(shù)etEntry方法 */ private Entry getEntry(ThreadLocal<?> key) { //通過hashcode確定下標(biāo) int i = key.threadLocalHashCode & (table.length - 1); Entry e = table[i]; //如果找到則直接返回 if (e != null && e.get() == key) return e; else // 找不到的話接著從i位置開始向后遍歷,基于線性探測(cè)法,是有可能在i之后的位置找到的 return getEntryAfterMiss(key, i, e); } /** * ThreadLocalMap的set方法 */ private void set(ThreadLocal<?> key, Object value) { //新開一個(gè)引用指向table Entry[] tab = table; //獲取table長度 int len = tab.length; ////獲取索引值,threadLocalHashCode進(jìn)行一個(gè)位運(yùn)算(取模)得到索引i int i = key.threadLocalHashCode & (len-1); /** * 遍歷tab如果已經(jīng)存在(key)則更新值(value) * 如果該key已經(jīng)被回收失效,則替換該失效的key **/ // for (Entry e = tab[i]; e != null; e = tab[i = nextIndex(i, len)]) { ThreadLocal<?> k = e.get(); if (k == key) { e.value = value; return; } //如果 k 為null,則替換當(dāng)前失效的k所在Entry節(jié)點(diǎn) if (k == null) { replaceStaleEntry(key, value, i); return; } } //如果上面沒有遍歷成功則創(chuàng)建新值 tab[i] = new Entry(key, value); // table內(nèi)元素size自增 int sz = ++size; //滿足條件數(shù)組擴(kuò)容x2 if (!cleanSomeSlots(i, sz) && sz >= threshold) rehash(); } /** * remove方法 * 將ThreadLocal對(duì)象對(duì)應(yīng)的Entry節(jié)點(diǎn)從table當(dāng)中刪除 */ private void remove(ThreadLocal<?> key) { Entry[] tab = table; int len = tab.length; int i = key.threadLocalHashCode & (len-1); for (Entry e = tab[i]; e != null; e = tab[i = nextIndex(i, len)]) { if (e.get() == key) { e.clear();//將引用設(shè)置null,方便GC回收 expungeStaleEntry(i);//從i的位置開始連續(xù)段清理工作 return; } } } /** * ThreadLocalMap中replaceStaleEntry方法 */ private void replaceStaleEntry(ThreadLocal<?> key, Object value, int staleSlot) { // 新建一個(gè)引用指向table Entry[] tab = table; //獲取table的長度 int len = tab.length; Entry e; // 記錄當(dāng)前失效的節(jié)點(diǎn)下標(biāo) int slotToExpunge = staleSlot; /** * 通過prevIndex(staleSlot, len)可以看出,由staleSlot下標(biāo)向前掃描 * 查找并記錄最前位置value為null的下標(biāo) */ for (int i = prevIndex(staleSlot, len); (e = tab[i]) != null; i = prevIndex(i, len)) if (e.get() == null) slotToExpunge = i; // nextIndex(staleSlot, len)可以看出,這個(gè)是向后掃描 // occurs first for (int i = nextIndex(staleSlot, len); (e = tab[i]) != null; i = nextIndex(i, len)) { // 獲取Entry節(jié)點(diǎn)對(duì)應(yīng)的ThreadLocal對(duì)象 ThreadLocal<?> k = e.get(); //如果和新的key相等的話,就直接賦值給value,替換i和staleSlot的下標(biāo) if (k == key) { e.value = value; tab[i] = tab[staleSlot]; tab[staleSlot] = e; // 如果之前的元素存在,則開始調(diào)用cleanSomeSlots清理 if (slotToExpunge == staleSlot) slotToExpunge = i; /** *在調(diào)用cleanSomeSlots() 清理之前,會(huì)調(diào)用 *expungeStaleEntry()從slotToExpunge到table下標(biāo)所在為 *null的連續(xù)段進(jìn)行一次清理,返回值就是table為null的下標(biāo) *然后以該下標(biāo) len進(jìn)行一次啟發(fā)式清理 * 最終里面的方法實(shí)際上還是調(diào)用了expungeStaleEntry * 可以看出expungeStaleEntry方法是ThreadLocal核心的清理函數(shù) */ cleanSomeSlots(expungeStaleEntry(slotToExpunge), len); return; } // If we didn't find stale entry on backward scan, the // first stale entry seen while scanning for key is the // first still present in the run. if (k == null && slotToExpunge == staleSlot) slotToExpunge = i; } // 如果在table中沒有找到這個(gè)key,則直接在當(dāng)前位置new Entry(key, value) tab[staleSlot].value = null; tab[staleSlot] = new Entry(key, value); // 如果有其他過時(shí)的節(jié)點(diǎn)正在運(yùn)行,會(huì)將它們進(jìn)行清除,slotToExpunge會(huì)被重新賦值 if (slotToExpunge != staleSlot) cleanSomeSlots(expungeStaleEntry(slotToExpunge), len); } /** * expungeStaleEntry() 啟發(fā)式地清理被回收的Entry * 有兩個(gè)地方調(diào)用到這個(gè)方法 * 1、set方法,在判斷是否需要resize之前,會(huì)清理并rehash一遍 * 2、替換失效的節(jié)點(diǎn)時(shí)候,也會(huì)進(jìn)行一次清理 */ private boolean cleanSomeSlots(int i, int n) { boolean removed = false; Entry[] tab = table; int len = tab.length; do { i = nextIndex(i, len); Entry e = tab[i]; //判斷如果Entry對(duì)象不為空 if (e != null && e.get() == null) { n = len; removed = true; //調(diào)用該方法進(jìn)行回收, //對(duì) i 開始到table所在下標(biāo)為null的范圍內(nèi)進(jìn)行一次清理和rehash i = expungeStaleEntry(i); } } while ( (n >>>= 1) != 0); return removed; } private int expungeStaleEntry(int staleSlot) { Entry[] tab = table; int len = tab.length; // expunge entry at staleSlot tab[staleSlot].value = null; tab[staleSlot] = null; size--; // Rehash until we encounter null Entry e; int i; for (i = nextIndex(staleSlot, len); (e = tab[i]) != null; i = nextIndex(i, len)) { ThreadLocal<?> k = e.get(); if (k == null) { e.value = null; tab[i] = null; size--; } else { int h = k.threadLocalHashCode & (len - 1); if (h != i) { tab[i] = null; while (tab[h] != null) h = nextIndex(h, len); tab[h] = e; } } } return i; } /** * Re-pack and/or re-size the table. First scan the entire * table removing stale entries. If this doesn't sufficiently * shrink the size of the table, double the table size. */ private void rehash() { expungeStaleEntries(); // Use lower threshold for doubling to avoid hysteresis if (size >= threshold - threshold / 4) resize(); } /** * 對(duì)table進(jìn)行擴(kuò)容,因?yàn)橐WCtable的長度是2的冪,所以擴(kuò)容就擴(kuò)大2倍 */ private void resize() { //獲取舊table的長度 Entry[] oldTab = table; int oldLen = oldTab.length; int newLen = oldLen * 2; //創(chuàng)建一個(gè)長度為舊長度2倍的Entry數(shù)組 Entry[] newTab = new Entry[newLen]; //記錄插入的有效Entry節(jié)點(diǎn)數(shù) int count = 0; /** * 從下標(biāo)0開始,逐個(gè)向后遍歷插入到新的table當(dāng)中 * 通過hashcode & len - 1計(jì)算下標(biāo),如果該位置已經(jīng)有Entry數(shù)組,則通過線性探測(cè)向后探測(cè)插入 */ for (int j = 0; j < oldLen; ++j) { Entry e = oldTab[j]; if (e != null) { ThreadLocal<?> k = e.get(); if (k == null) {//如遇到key已經(jīng)為null,則value設(shè)置null,方便GC回收 e.value = null; // Help the GC } else { int h = k.threadLocalHashCode & (newLen - 1); while (newTab[h] != null) h = nextIndex(h, newLen); newTab[h] = e; count++; } } } // 重新設(shè)置擴(kuò)容的閾值 setThreshold(newLen); // 更新size size = count; // 指向新的Entry數(shù)組 table = newTab; } }
key.threadLocalHashCode & (len-1),將threadLocalHashCode進(jìn)行一個(gè)位運(yùn)算(取模)得到索引 " i " ,也就是在table中的下標(biāo)
for循環(huán)遍歷,如果Entry中的key和我們的需要操作的ThreadLocal的相等,這直接賦值替換
如果拿到的key為null ,則調(diào)用replaceStaleEntry()進(jìn)行替換
如果上面的條件都沒有成功滿足,直接在計(jì)算的下標(biāo)中創(chuàng)建新值
在進(jìn)行一次清理之后,調(diào)用rehash()下的resize()進(jìn)行擴(kuò)容
這是 ThreadLocal 中一個(gè)核心的清理方法
為什么需要清理?
在我們 Entry 中,如果有很多節(jié)點(diǎn)是已經(jīng)過時(shí)或者回收了,但是在table數(shù)組中繼續(xù)存在,會(huì)導(dǎo)致資源浪費(fèi)
我們?cè)谇謇砉?jié)點(diǎn)的同時(shí),也會(huì)將后面的Entry節(jié)點(diǎn),重新排序,調(diào)整Entry大小,這樣我們?cè)谌≈?get())的時(shí)候,可以快速定位資源,加快我們的程序的獲取效率
我們?cè)谑褂胷emove節(jié)點(diǎn)的時(shí)候,會(huì)使用線性探測(cè)的方式,找到當(dāng)前的key
如果當(dāng)前key一致,調(diào)用clear()將引用指向null
從"i"開始的位置進(jìn)行一次連續(xù)段清理
目錄結(jié)構(gòu):
在這里插入圖片描述
package com.lyy.threadlocal.config; import lombok.extern.slf4j.Slf4j; import javax.servlet.*; import javax.servlet.http.HttpServletRequest; import java.io.IOException; @Slf4j public class HttpFilter implements Filter { //初始化需要做的事情 @Override public void init(FilterConfig filterConfig) throws ServletException { } //核心操作在這個(gè)里面 @Override public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) throws IOException, ServletException { HttpServletRequest request = (HttpServletRequest)servletRequest; // request.getSession().getAttribute("user"); System.out.println("do filter:"+Thread.currentThread().getId()+":"+request.getServletPath()); RequestHolder.add(Thread.currentThread().getId()); //讓這個(gè)請(qǐng)求完,,同時(shí)做下一步處理 filterChain.doFilter(servletRequest,servletResponse); } //不再使用的時(shí)候做的事情 @Override public void destroy() { } }
package com.lyy.threadlocal.config; import org.springframework.web.servlet.handler.HandlerInterceptorAdapter; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; public class HttpInterceptor extends HandlerInterceptorAdapter { //接口處理之前 @Override public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception { System.out.println("preHandle:"); return true; } //接口處理之后 @Override public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) throws Exception { RequestHolder.remove(); System.out.println("afterCompletion"); return; } }
package com.lyy.threadlocal.config; public class RequestHolder { private final static ThreadLocal<Long> requestHolder = new ThreadLocal<>();// //提供方法傳遞數(shù)據(jù) public static void add(Long id){ requestHolder.set(id); } public static Long getId(){ //傳入了當(dāng)前線程的ID,到底層Map里面去取 return requestHolder.get(); } //移除變量信息,否則會(huì)造成逸出,導(dǎo)致內(nèi)容永遠(yuǎn)不會(huì)釋放掉 public static void remove(){ requestHolder.remove(); } }
package com.lyy.threadlocal.controller; import com.lyy.threadlocal.config.RequestHolder; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; @Controller @RequestMapping("/thredLocal") public class ThreadLocalController { @RequestMapping("test") @ResponseBody public Long test(){ return RequestHolder.getId(); } }
package com.lyy.threadlocal; import com.lyy.threadlocal.config.HttpFilter; import com.lyy.threadlocal.config.HttpInterceptor; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.web.servlet.FilterRegistrationBean; import org.springframework.context.annotation.Bean; import org.springframework.web.servlet.config.annotation.InterceptorRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter; @SpringBootApplication public class ThreadlocalDemoApplication extends WebMvcConfigurerAdapter { public static void main(String[] args) { SpringApplication.run(ThreadlocalDemoApplication.class, args); } @Bean public FilterRegistrationBean httpFilter(){ FilterRegistrationBean registrationBean = new FilterRegistrationBean(); registrationBean.setFilter(new HttpFilter()); registrationBean.addUrlPatterns("/thredLocal/*"); return registrationBean; } @Override public void addInterceptors(InterceptorRegistry registry) { registry.addInterceptor(new HttpInterceptor()).addPathPatterns("/**"); } }
輸入:http://localhost:8080/thredLocal/test
后臺(tái)打?。?/p>
do filter:35:/thredLocal/test preHandle: afterCompletion
1、ThreadLocal是通過每個(gè)線程單獨(dú)一份存儲(chǔ)空間,每個(gè)ThreadLocal只能保存一個(gè)變量副本。
2、相比于Synchronized,ThreadLocal具有線程隔離的效果,只有在線程內(nèi)才能獲取到對(duì)應(yīng)的值,線程外則不能訪問到想要的值,很好的實(shí)現(xiàn)了線程封閉。
3、每次使用完ThreadLocal,都調(diào)用它的remove()方法,清除數(shù)據(jù),避免內(nèi)存泄漏的風(fēng)險(xiǎn)
4、通過上面的源碼分析,我們也可以看到大神在寫代碼的時(shí)候會(huì)考慮到整體實(shí)現(xiàn)的方方面面,一些邏輯上的處理是真嚴(yán)謹(jǐn)?shù)?,我們?cè)诳丛创a的時(shí)候不能只是做了解,也要看到別人實(shí)現(xiàn)功能后面的目的。
上述就是小編為大家分享的什么是ThreadLocal了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。