电脑知识|欧美黑人一区二区三区|软件|欧美黑人一级爽快片淫片高清|系统|欧美黑人狂野猛交老妇|数据库|服务器|编程开发|网络运营|知识问答|技术教程文章 - 好吧啦网

您的位置:首頁技術文章
文章詳情頁

徹底搞懂Java多線程(一)

瀏覽:111日期:2022-08-09 13:27:31
目錄Java多線程線程的創建線程常用方法線程的終止1.自定義實現線程的終止2.使用Thread的interrupted來中斷3.Thraed.interrupted()方法和Threaed.currentThread().interrupt()的區別線程的狀態線程的優先級守護線程線程組線程安全問題volatile關鍵字總結Java多線程線程的創建

1.繼承Thread

2.實現Runnable

3.實現Callable

使用繼承Thread類來開發多線程的應用程序在設計上是有局限性的,因為Java是單繼承。

繼承Thread類

public class ThreadDemo1 { // 繼承Thread類 寫法1 static class MyThread extends Thread{@Overridepublic void run() { //要實現的業務代碼} } // 寫法2 Thread thread = new Thread(){@Overridepublic void run() { //要實現的業務代碼} };}

實現Runnable接口

//實現Runnable接口 寫法1class MyRunnable implements Runnable{ @Override public void run() {//要實現的業務代碼 }}//實現Runnable接口 寫法2 匿名內部類class MyRunnable2 { public static void main(String[] args) {Thread thread = new Thread(new Runnable() { @Override public void run() {//要實現的業務代碼 }}); }}

實現Callable接口(Callable + FutureTask 創建帶有返回值的線程)

package ThreadDeom;import java.util.concurrent.Callable;import java.util.concurrent.ExecutionException;import java.util.concurrent.FutureTask;/** * user:ypc; * date:2021-06-11; * time: 17:34; *///創建有返回值的線程 Callable + Futurepublic class ThreadDemo2 { static class MyCallable implements Callable<Integer>{@Overridepublic Integer call() throws Exception { return 0;} } public static void main(String[] args) throws ExecutionException, InterruptedException {//創建Callable子對象MyCallable myCallable = new MyCallable();//使用FutureTask 接受 CallableFutureTask<Integer> futureTask = new FutureTask<>(myCallable);//創建線程并設置任務Thread thread = new Thread(futureTask);//啟動線程thread.start();//得到線程的執行結果int num = futureTask.get(); }}

也可以使用lambda表達式

class ThreadDemo21{ //lambda表達式 Thread thread = new Thread(()-> {//要實現的業務代碼 });}

Thread的構造方法

徹底搞懂Java多線程(一)

線程常用方法

獲取當前線程的引用、線程的休眠

class Main{ public static void main(String[] args) throws InterruptedException {Thread.sleep(1000);//休眠1000毫秒之后打印System.out.println(Thread.currentThread());System.out.println(Thread.currentThread().getName()); }}

徹底搞懂Java多線程(一)

package ThreadDeom;/** * user:ypc; * date:2021-06-11; * time: 18:38; */public class ThreadDemo6 { public static void main(String[] args) throws InterruptedException {Thread thread = new Thread(new Runnable() { @Override public void run() {System.out.println('線程的ID:' + Thread.currentThread().getId());System.out.println('線程的名稱:' + Thread.currentThread().getName());System.out.println('線程的狀態:' + Thread.currentThread().getState());try { Thread.sleep(1000);} catch (InterruptedException e) { e.printStackTrace();} }},'線程一');thread.start();Thread.sleep(100);//打印線程的狀態System.out.println('線程的狀態:'+thread.getState());System.out.println('線程的優先級:'+thread.getPriority());System.out.println('線程是否存活:'+thread.isAlive());System.out.println('線程是否是守護線程:'+thread.isDaemon());System.out.println('線程是否被打斷:'+thread.isInterrupted()); }}

徹底搞懂Java多線程(一)

線程的等待

假設有一個坑位,thread1 和 thread2 都要上廁所。一次只能一個人上,thread2只能等待thread1使用完才能使用廁所。就可以使用join()方法,等待線程1執行完,thread2在去執行。👇

package ThreadDeom;/** * user:ypc; * date:2021-06-12; * time: 10:48; */public class ThreadDemo13 { public static void main(String[] args) throws InterruptedException {Runnable runnable = new Runnable() { @Override public void run() {System.out.println(Thread.currentThread().getName()+'🚾');try { Thread.sleep(1000);} catch (InterruptedException e) { e.printStackTrace();}System.out.println(Thread.currentThread().getName()+'出來了'); }};Thread t1 = new Thread(runnable,'thread1');t1.start();//t1.join();Thread t2 = new Thread(runnable,'thread2');t2.start(); }}

徹底搞懂Java多線程(一)

沒有join()顯然是不行的。加上join()之后:

徹底搞懂Java多線程(一)

線程的終止1.自定義實現線程的終止

package ThreadDeom;/** * user:ypc; * date:2021-06-12; * time: 9:59; */public class ThreadDemo11 { private static boolean flag = false; public static void main(String[] args) throws InterruptedException {Thread thread = new Thread(new Runnable() { @Override public void run() {while (!flag){ System.out.println('我是 : ' + Thread.currentThread().getName() + ',我還沒有被interrupted呢'); try {Thread.sleep(100); } catch (InterruptedException e) {e.printStackTrace(); }}System.out.println('我是 '+Thread.currentThread().getName()+',我被interrupted了'); }},'thread');thread.start();Thread.sleep(300);flag = true; }}

徹底搞懂Java多線程(一)

2.使用Thread的interrupted來中斷

package ThreadDeom;/** * user:ypc; * date:2021-06-12; * time: 9:59; */public class ThreadDemo11 {// private static boolean flag = false; public static void main(String[] args) throws InterruptedException {Thread thread = new Thread(new Runnable() { @Override public void run() {while (!Thread.interrupted()){ System.out.println('我是 : ' + Thread.currentThread().getName() + ',我還沒有被interrupted呢'); try {Thread.sleep(100); } catch (InterruptedException e) {//e.printStackTrace();break; }}System.out.println('我是 '+Thread.currentThread().getName()+',我被interrupted了'); }},'thread');thread.start();Thread.sleep(300);thread.interrupt();//flag = true; }}

徹底搞懂Java多線程(一)

3.Thraed.interrupted()方法和Threaed.currentThread().interrupt()的區別

Thread.interrupted()方法第一次接收到終止的狀態后,之后會將狀態復位,Thread.interrupted()是靜態的,是全局的。

Threaed.currentThread().interrupt()只是普通的方法。

Thraed.interrupted()方法

package ThreadDeom;/** * user:ypc; * date:2021-06-12; * time: 10:32; */public class ThreadDemo12 { public static void main(String[] args) throws InterruptedException {Thread thread = new Thread(() ->{ for (int i = 0; i < 10; i++) {System.out.println(Thread.interrupted()); }});thread.start();thread.interrupt(); }}

徹底搞懂Java多線程(一)

Threaed.currentThread().interrupt()

package ThreadDeom;/** * user:ypc; * date:2021-06-12; * time: 10:32; */public class ThreadDemo12 { public static void main(String[] args) throws InterruptedException {Thread thread = new Thread(() ->{ for (int i = 0; i < 10; i++) {//System.out.println(Thread.interrupted());System.out.println(Thread.currentThread().isInterrupted()); }});thread.start();thread.interrupt(); }}

徹底搞懂Java多線程(一)

yield()方法

讓出CPU的執行權

package ThreadDeom;/** * user:ypc; * date:2021-06-12; * time: 11:47; */public class ThreadDemo15 { public static void main(String[] args) {Thread thread1 = new Thread(() -> { for (int i = 0; i < 100; i++) {Thread.yield();System.out.println('thread1'); }});thread1.start();Thread thread2 = new Thread(() -> { for (int i = 0; i < 100; i++) {System.out.println('thread2'); }});thread2.start(); }}

徹底搞懂Java多線程(一)

線程的狀態

徹底搞懂Java多線程(一)

打印出線程的所有的狀態,所有的線程的狀態都在枚舉中。👇

package ThreadDeom;/** * user:ypc; * date:2021-06-12; * time: 11:06; */public class ThreadDemo14 { public static void main(String[] args) {for (Thread.State state: Thread.State.values()) { System.out.println(state);} }}

徹底搞懂Java多線程(一)

NEW 創建了線程但是還沒有開始工作 RUNNABLE 正在Java虛擬機中執行的線程 BLOCKED 受到阻塞并且正在等待某個監視器的鎖的時候所處的狀態 WAITTING 無限期的等待另一個線程執行某個特定操作的線程處于這個狀態 TIME_WAITTING 有具體等待時間的等待 TERMINATED 已經退出的線程處于這種狀態

package ThreadDeom;/** * user:ypc; * date:2021-06-12; * time: 11:06; */class TestThreadDemo{ public static void main(String[] args) throws InterruptedException {Thread thread = new Thread(new Runnable() { @Override public void run() {try { Thread.sleep(2000);} catch (InterruptedException e) { e.printStackTrace();} }});System.out.println(thread.getState());thread.start();System.out.println(thread.getState());Thread.sleep(100);System.out.println(thread.getState());thread.join();System.out.println(thread.getState()); }}

徹底搞懂Java多線程(一)

線程的優先級

在Java中線程 的優先級分為1 ~ 10 一共十個等級

package ThreadDeom;/** * user:ypc; * date:2021-06-11; * time: 21:22; */public class ThreadDemo9 { public static void main(String[] args) {for (int i = 0; i < 5; i++) { Thread t1 = new Thread(new Runnable() {@Overridepublic void run() { System.out.println('t1');} }); //最大優先級 t1.setPriority(10); t1.start(); Thread t2 = new Thread(new Runnable() {@Overridepublic void run() { System.out.println('t2');} }); //最小優先級 t2.setPriority(1); t2.start(); Thread t3 = new Thread(new Runnable() {@Overridepublic void run() { System.out.println('t3');} }); t3.setPriority(1); t3.start();} }}

徹底搞懂Java多線程(一)

線程的優先級不是絕對的,只是給程序的建議。

線程之間的優先級具有繼承的特性,如果A線程啟動了B線程,那么B的線程的優先級與A是一樣的。👇

package ThreadDeom;/** * user:ypc; * date:2021-06-11; * time: 20:46; */class ThreadA extends Thread{ @Override public void run() {System.out.println('ThreadA優先級是:' + this.getPriority());ThreadB threadB = new ThreadB();threadB.start(); }}class ThreadB extends ThreadA{ @Override public void run() {System.out.println('ThreadB的優先級是:' + this.getPriority()); }}public class ThreadDemo7 { public static void main(String[] args) {System.out.println('main線程開始的優先級是:' + Thread.currentThread().getPriority()); System.out.println('main線程結束的優先級是:' + Thread.currentThread().getPriority());ThreadA threadA = new ThreadA();threadA.start(); }}

徹底搞懂Java多線程(一)

再看👇

package ThreadDeom;/** * user:ypc; * date:2021-06-11; * time: 20:46; */class ThreadA extends Thread{ @Override public void run() {System.out.println('ThreadA優先級是:' + this.getPriority());ThreadB threadB = new ThreadB();threadB.start(); }}class ThreadB extends ThreadA{ @Override public void run() {System.out.println('ThreadB的優先級是:' + this.getPriority()); }}public class ThreadDemo7 { public static void main(String[] args) {System.out.println('main線程開始的優先級是:' + Thread.currentThread().getPriority());Thread.currentThread().setPriority(9);System.out.println('main線程結束的優先級是:' + Thread.currentThread().getPriority());ThreadA threadA = new ThreadA();threadA.start(); }}

結果為👇

徹底搞懂Java多線程(一)守護線程

Java中有兩種線程:一種是用戶線程,一種就是守護線程。

什么是守護線程?守護線程是一種特殊的線程,當進程中不存在用戶線程的時候,守護線程就會自動銷毀。典型的守護線程就是垃圾回收線程,當進程中沒有了非守護線程,則垃圾回收線程也就沒有存在的必要了。

Daemon線程的作用就是為其他線程的運行提供便利的。👇

package ThreadDeom;/** * user:ypc; * date:2021-06-11; * time: 21:06; */public class ThreadDemo8 { static private int i = 0; public static void main(String[] args) throws InterruptedException {Thread thread = new Thread(new Runnable() { @Override public void run() {while (true){ i++; System.out.println(i); try {Thread.sleep(1000); } catch (InterruptedException e) {e.printStackTrace(); }} }});//設置守護線程thread.setDaemon(true);thread.start();Thread.sleep(5000);System.out.println('我是守護線程thread 當用戶線程執行完成后 我也就銷毀了😭哭了'); }}

徹底搞懂Java多線程(一)

注意:守護線程的設置必須放在start()之前,否則就會報錯。

徹底搞懂Java多線程(一)

在守護線程中創建的線程默認也是守護線程。

package ThreadDeom;/** * user:ypc; * date:2021-06-12; * time: 9:35; */public class ThreadDemo10 { public static void main(String[] args) {Thread thread1 = new Thread(()->{ Thread thread2 = new Thread(() -> { },'thread2'); System.out.println('thread2是守護線程嗎?:' + thread2.isDaemon());},'thread1');System.out.println('thread1是守護線程嗎?:' + thread1.isDaemon());//thread1.setDaemon(true);thread1.start(); // System.out.println('thread1是守護線程嗎?:' + thread1.isDaemon()); }}

徹底搞懂Java多線程(一)

再看👇

package ThreadDeom;/** * user:ypc; * date:2021-06-12; * time: 9:35; */public class ThreadDemo10 { public static void main(String[] args) {Thread thread1 = new Thread(()->{ Thread thread2 = new Thread(() -> { },'thread2'); System.out.println('thread2是守護線程嗎?:' + thread2.isDaemon());},'thread1');System.out.println('thread1是守護線程嗎?:' + thread1.isDaemon());thread1.setDaemon(true);thread1.start();System.out.println('thread1是守護線程嗎?:' + thread1.isDaemon()); }}

徹底搞懂Java多線程(一)

線程組

為了便于對某些具有相同功能的線程進行管理,可以把這些線程歸屬到同一個線程組中,線程組中既可以有線程對象,也可以有線程組,組中也可以有線程。使用線程模擬賽跑

public class ThreadDemo5 { //線程模擬賽跑(未使用線程分組) public static void main(String[] args) {Thread t1 = new Thread(new Runnable() { @Override public void run() {try { Thread.sleep(1000);} catch (InterruptedException e) { e.printStackTrace();}System.out.println(Thread.currentThread().getName() + '到達了終點'); }}, '選手一');Thread t2 = new Thread(new Runnable() { @Override public void run() {try { Thread.sleep(1200);} catch (InterruptedException e) { e.printStackTrace();}System.out.println(Thread.currentThread().getName() + '到達了終點'); }}, '選手二');t1.start();t2.start();System.out.println('所有選手到達了終點'); }}

運行結果:

徹底搞懂Java多線程(一)

不符合預期效果,就可以使用線程組來實現

package ThreadDeom;/** * user:ypc; * date:2021-06-11; * time: 18:24; */class ThreadGroup1 { //線程分組模擬賽跑 public static void main(String[] args) {ThreadGroup threadGroup = new ThreadGroup('Group');Thread t1 = new Thread(threadGroup, new Runnable() { @Override public void run() {try { Thread.sleep(1000);} catch (InterruptedException e) { e.printStackTrace();}System.out.println('選手一到達了終點'); }});Thread t2 = new Thread(threadGroup, new Runnable() { @Override public void run() {try { Thread.sleep(1200);} catch (InterruptedException e) { e.printStackTrace();}System.out.println('選手二到達了終點'); }});t2.start();t1.start();while (threadGroup.activeCount() != 0) {}System.out.println('所有選手到達了終點'); }}

徹底搞懂Java多線程(一)

線程組常用的方法

徹底搞懂Java多線程(一)

線程安全問題

來看單線程情況下讓count分別自增和自減10000次

package ThreadDeom;/** * user:ypc; * date:2021-06-12; * time: 12:03; */class Counter { private static int count = 0; public void increase(){for (int i = 0; i < 10000; i++) { count++;} } public void decrease(){for (int i = 0; i < 10000; i++) { count--;} } public int getCount(){return count; }}public class ThreadDemo16 { public static void main(String[] args) {//單線程Counter counter = new Counter();counter.increase();counter.decrease();System.out.println(counter.getCount()); }}

結果符合預期

徹底搞懂Java多線程(一)

如果想使程序的執行速度快,就可以使用多線程的方式來執行。在來看多線程情況下的問題

public class ThreadDemo16 { public static void main(String[] args) throws InterruptedException {//多線程情況下Counter counter = new Counter();Thread thread1 = new Thread(()->{ counter.decrease();});Thread thread2 = new Thread(()->{ counter.increase();});thread1.start();thread2.start();thread1.join();thread2.join();System.out.println(counter.getCount());/*//單線程Counter counter = new Counter();counter.increase();counter.decrease();System.out.println(counter.getCount()); */ }}

執行結果:

徹底搞懂Java多線程(一)

徹底搞懂Java多線程(一)

徹底搞懂Java多線程(一)

每次的執行結果是不一樣的。這就是多線程的不安全問題

徹底搞懂Java多線程(一)

預期的結果是0,但結果卻不是。線程不安全問題的原因:

1.CPU的搶占式執行 2.多個線程共同操作一個變量 3.內存可見性 4.原子性問題 5.編譯器優化(指令重排)

多個線程操作同一個變量

如果多個線程操作的不是一個變量,就不會發生線程的不安全問題,可以將上面的代碼修改如下:👇

public class ThreadDemo16 { static int res1 = 0; static int res2 = 0; public static void main(String[] args) throws InterruptedException {Counter counter = new Counter();Thread thread1 = new Thread(new Runnable() { @Override public void run() {res1 = counter.getCount(); }});Thread thread2 = new Thread(new Runnable() { @Override public void run() {res2 = counter.getCount(); }});System.out.println(res1 + res2);/*//多線程情況下Counter counter = new Counter();Thread thread1 = new Thread(()->{ counter.decrease();});Thread thread2 = new Thread(()->{ counter.increase();});thread1.start();thread2.start();thread1.join();thread2.join();System.out.println(counter.getCount());*//*//單線程Counter counter = new Counter();counter.increase();counter.decrease();System.out.println(counter.getCount()); */ }}

這樣就可以了:

徹底搞懂Java多線程(一)

內存不可見問題:看下面的代碼,是不是到thread2執行的時候,就會改變num的值,從而終止了thread1呢?

package ThreadDeom;import java.util.Scanner;/** * user:ypc; * date:2021-06-12; * time: 13:03; */public class ThreadDemo17 { private static int num = 0; public static void main(String[] args) {Thread thread1 = new Thread(new Runnable() { @Override public void run() {while (num == 0){} }});thread1.start();Thread thread2 = new Thread(new Runnable() { @Override public void run() {Scanner scanner = new Scanner(System.in);System.out.println('輸入一個數字來終止線程thread1');num = scanner.nextInt(); }});thread2.start(); }}

結果是不能的:

徹底搞懂Java多線程(一)

輸入一個數字后回車,并沒有讓thread1的循環結束。這就是內存不可見的問題。

原子性的問題

上面的++和?操作其實是分三步來執行的

徹底搞懂Java多線程(一)

假設在第二部的時候,有另外一個線程也來修改值,那么就會出現臟數據的問題了。

所以就會發生線程的不安全問題

編譯器優化編譯器的優化會打亂原本程序的執行順序,就有可能導致線程的不安全問題發生。在單線程不會發生線程的不安全問題,在多線程就可能會不安全。

volatile關鍵字

可以使用volatile關鍵字,這個關鍵字可以解決指令重排和內存不可見的問題。

徹底搞懂Java多線程(一)

加上volatile關鍵字之后的運行結果

徹底搞懂Java多線程(一)

但是volatile關鍵字不能解決原子性的問題👇:

package ThreadDeom;/** * user:ypc; * date:2021-06-12; * time: 14:02; */class Counter1 { private static volatile int count = 0; public void increase() {for (int i = 0; i < 10000; i++) { count++;} } public void decrease() {for (int i = 0; i < 10000; i++) { count--;} } public int getCount() {return count; }}public class ThreadDemo18 { public static void main(String[] args) throws InterruptedException {Counter1 counter1 = new Counter1();Thread thread1 = new Thread(new Runnable() { @Override public void run() {counter1.decrease(); }});Thread thread2 = new Thread(() -> { counter1.increase();});thread1.start();thread2.start();thread1.join();thread2.join();System.out.println(counter1.getCount()); }}

徹底搞懂Java多線程(一)

徹底搞懂Java多線程(一)

總結

本篇文章就到這里,希望可以幫到你,也希望您能夠多多關注好吧啦網的其他文章!

標簽: Java
相關文章:
主站蜘蛛池模板: 金属抛光机-磁悬浮抛光机-磁力研磨机-磁力清洗机 - 苏州冠古科技 | 硫化罐_蒸汽硫化罐_大型硫化罐-山东鑫泰鑫智能装备有限公司 | 碳化硅,氮化硅,冰晶石,绢云母,氟化铝,白刚玉,棕刚玉,石墨,铝粉,铁粉,金属硅粉,金属铝粉,氧化铝粉,硅微粉,蓝晶石,红柱石,莫来石,粉煤灰,三聚磷酸钠,六偏磷酸钠,硫酸镁-皓泉新材料 | 行星齿轮减速机,减速机厂家,山东减速机-淄博兴江机械制造 | 滁州高低温冲击试验箱厂家_安徽高低温试验箱价格|安徽希尔伯特 | 非标压力容器_碳钢储罐_不锈钢_搪玻璃反应釜厂家-山东首丰智能环保装备有限公司 | 浩方智通 - 防关联浏览器 - 跨境电商浏览器 - 云雀浏览器 | 神超官网_焊接圆锯片_高速钢锯片_硬质合金锯片_浙江神超锯业制造有限公司 | loft装修,上海嘉定酒店式公寓装修公司—曼城装饰 | EDLC超级法拉电容器_LIC锂离子超级电容_超级电容模组_软包单体电容电池_轴向薄膜电力电容器_深圳佳名兴电容有限公司_JMX专注中高端品牌电容生产厂家 | 北京租车牌|京牌指标租赁|小客车指标出租 | 环比机械| 蔡司三坐标-影像测量机-3D扫描仪-蔡司显微镜-扫描电镜-工业CT-ZEISS授权代理商三本工业测量 | 铸钢件厂家-铸钢齿轮-减速机厂家-淄博凯振机械有限公司 | 呼末二氧化碳|ETCO2模块采样管_气体干燥管_气体过滤器-湖南纳雄医疗器械有限公司 | 医学动画公司-制作3d医学动画视频-医疗医学演示动画制作-医学三维动画制作公司 | 北京网站建设-企业网站建设-建站公司-做网站-北京良言多米网络公司 | 跨境物流_美国卡派_中大件运输_尾程派送_海外仓一件代发 - 广州环至美供应链平台 | 立刷【微电签pos机】-嘉联支付立刷运营中心 | 船用烟火信号弹-CCS防汛救生圈-船用救生抛绳器(海威救生设备) | MVR蒸发器厂家-多效蒸发器-工业废水蒸发器厂家-康景辉集团官网 | 体感VRAR全息沉浸式3D投影多媒体展厅展会游戏互动-万展互动 | 江苏齐宝进出口贸易有限公司 | 暴风影音 | 粘度计维修,在线粘度计,二手博勒飞粘度计维修|收购-天津市祥睿科技有限公司 | 西安展台设计搭建_西安活动策划公司_西安会议会场布置_西安展厅设计西安旭阳展览展示 | 钢格栅板_钢格板网_格栅板-做专业的热镀锌钢格栅板厂家-安平县迎瑞丝网制造有限公司 | 槽钢冲孔机,槽钢三面冲,带钢冲孔机-山东兴田阳光智能装备股份有限公司 | 物联网卡_物联网卡购买平台_移动物联网卡办理_移动联通电信流量卡通信模组采购平台? | 北京康百特科技有限公司-分子蒸馏-短程分子蒸馏设备-实验室分子蒸馏设备 | 变频器维修公司_plc维修_伺服驱动器维修_工控机维修 - 夫唯科技 变位机,焊接变位机,焊接变位器,小型变位机,小型焊接变位机-济南上弘机电设备有限公司 | 专业广州网站建设,微信小程序开发,一物一码和NFC应用开发、物联网、外贸商城、定制系统和APP开发【致茂网络】 | 西门子伺服控制器维修-伺服驱动放大器-828D数控机床维修-上海涌迪 | 北京中创汇安科贸有限公司 | 电线电缆厂家|沈阳电缆厂|电线厂|沈阳英联塑力线缆有限公司 | 工程管道/塑料管材/pvc排水管/ppr给水管/pe双壁波纹管等品牌管材批发厂家-河南洁尔康建材 | 青岛侦探调查_青岛侦探事务所_青岛调查事务所_青岛婚外情取证-青岛狄仁杰国际侦探公司 | 液晶拼接屏厂家_拼接屏品牌_拼接屏价格_监控大屏—北京维康 | 柔性测斜仪_滑动测斜仪-广州杰芯科技有限公司 | 品牌设计_VI设计_电影海报设计_包装设计_LOGO设计-Bacross新越品牌顾问 | 济南品牌设计-济南品牌策划-即合品牌策划设计-山东即合官网 |