{"id":4021,"date":"2024-10-07T14:28:01","date_gmt":"2024-10-07T06:28:01","guid":{"rendered":"https:\/\/www.talktop.cn\/?p=4021"},"modified":"2024-11-12T11:18:59","modified_gmt":"2024-11-12T03:18:59","slug":"%e6%8e%8c%e6%8f%a1java%e7%ba%bf%e7%a8%8b%ef%bc%9a%e6%8f%90%e5%8d%87%e6%80%a7%e8%83%bd%e7%9a%84%e5%85%b3%e9%94%ae%e6%8a%80%e6%9c%af%e4%b8%8e%e6%9c%80%e4%bd%b3%e5%ae%9e%e8%b7%b5","status":"publish","type":"post","link":"https:\/\/www.talktop.cn\/?p=4021","title":{"rendered":"\u638c\u63e1Java\u591a\u7ebf\u7a0b\uff1a\u63d0\u5347\u6027\u80fd\u7684\u5173\u952e\u6280\u672f\u4e0e\u6700\u4f73\u5b9e\u8df5"},"content":{"rendered":"\n<h5 class=\"wp-block-heading\"><strong>\u4e00\u3001\u4ec0\u4e48\u662f\u7ebf\u7a0b<\/strong><\/h5>\n\n\n\n<p>\u7ebf\u7a0b\u662f\u5e76\u53d1\u7f16\u7a0b\u7684\u57fa\u672c\u5355\u4f4d\uff0c\u5b83\u662f\u7a0b\u5e8f\u6267\u884c\u7684\u6700\u5c0f\u5355\u4f4d\uff0cJava\u7a0b\u5e8f\u9ed8\u8ba4\u5355\u7ebf\u7a0b\uff0c\u6240\u6709\u7a0b\u5e8f\u90fd\u5728\u4e3b\u7ebf\u7a0b\u4e2d\u8fd0\u884c\u3002\u4e00\u4e2a\u8fdb\u7a0b\u901a\u5e38\u5305\u542b\u591a\u4e2a\u7ebf\u7a0b\uff0c\u8fd9\u4e9b\u7ebf\u7a0b\u5171\u4eab\u8fdb\u7a0b\u7684\u8d44\u6e90\u3002\u7ebf\u7a0b\u95f4\u53ef\u4ee5\u901a\u8fc7\u5171\u4eab\u5185\u5b58\u8fdb\u884c\u901a\u4fe1\uff0c\u8fd9\u4f7f\u5f97\u7ebf\u7a0b\u7684\u521b\u5efa\u548c\u4e0a\u4e0b\u6587\u5207\u6362\u6bd4\u8fdb\u7a0b\u66f4\u4e3a\u8f7b\u91cf\u548c\u9ad8\u6548\u3002<\/p>\n\n\n\n<p>\u8fdb\u7a0b\u6709\u72ec\u7acb\u7684\u5185\u5b58\u7a7a\u95f4\u548c\u8d44\u6e90\uff0c\u6bcf\u4e2a\u8fdb\u7a0b\u662f\u76f8\u4e92\u9694\u79bb\u7684\u3002Java\u5e94\u7528\u7a0b\u5e8f\u8fd0\u884c\u5728JVM\uff08Java\u865a\u62df\u673a\uff09\u4e0a\uff0cJVM\u672c\u8eab\u5c31\u662f\u4e00\u4e2a\u8fdb\u7a0b\u3002<\/p>\n\n\n\n<h5 class=\"wp-block-heading\"><strong>\u4e8c\u3001\u5982\u4f55\u521b\u5efa\u7ebf\u7a0b<\/strong><\/h5>\n\n\n\n<p><strong>\uff081\uff09\u7ee7\u627fThread\u7c7b<\/strong><\/p>\n\n\n\n<p>\u901a\u8fc7\u7ee7\u627fThread\u7c7b\u5e76\u91cd\u5199run\u65b9\u6cd5\u6765\u521b\u5efa\u7ebf\u7a0b\u3002\u6bcf\u4e2aThread\u5bf9\u8c61\u4ee3\u8868\u4e00\u4e2a\u7ebf\u7a0b\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-1908740f9485db7355c1c22e511ab22f\"><code>class MyThread extends Thread {\n    @Override\n    public void run() {\n        System.out.println(\"Thread is running\");\n    }\n}\n\npublic class Main {\n    public static void main(String&#91;] args) {\n        MyThread thread = new MyThread();\n        thread.start();  \/\/ \u542f\u52a8\u7ebf\u7a0b\n    }\n}<\/code><\/pre>\n\n\n\n<p><strong>\uff082\uff09\u5b9e\u73b0Runable\u63a5\u53e3<\/strong><\/p>\n\n\n\n<p>\u5b9e\u73b0Runnable\u63a5\u53e3\u5e76\u5c06\u5176\u4f20\u9012\u7ed9Thread\u5bf9\u8c61\uff0c\u8fd9\u662f\u521b\u5efa\u7ebf\u7a0b\u7684\u53e6\u4e00\u79cd\u65b9\u5f0f\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-f78add326672f0723cb58c68521c80f8\"><code>class MyRunnable implements Runnable {\n    @Override\n    public void run() {\n        System.out.println(\"Runnable thread is running\");\n    }\n}\n\npublic class Main {\n    public static void main(String&#91;] args) {\n        Thread thread = new Thread(new MyRunnable());\n        thread.start();  \/\/ \u542f\u52a8\u7ebf\u7a0b\n    }\n}<\/code><\/pre>\n\n\n\n<p><strong>\uff083\uff09\u4f7f\u7528Callable\u548cFuture<\/strong><\/p>\n\n\n\n<p>Callable\u63a5\u53e3\u7c7b\u4f3c\u4e8eRunnable\uff0c\u4f46\u53ef\u4ee5\u8fd4\u56de\u4e00\u4e2a\u7ed3\u679c\u5e76\u629b\u51fa\u5f02\u5e38\u3002\u4f7f\u7528Future\u6765\u83b7\u53d6\u7ed3\u679c\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-da0481d346f18ab2436b28fbf97e710d\"><code>import java.util.concurrent.Callable;\nimport java.util.concurrent.ExecutionException;\nimport java.util.concurrent.ExecutorService;\nimport java.util.concurrent.Executors;\nimport java.util.concurrent.Future;\n\nclass MyCallable implements Callable&lt;String&gt; {\n    @Override\n    public String call() throws Exception {\n        return \"Callable thread result\";\n    }\n}\n\npublic class Main {\n    public static void main(String&#91;] args) {\n        ExecutorService executor = Executors.newSingleThreadExecutor();\n        Future&lt;String&gt; future = executor.submit(new MyCallable());\n\n        try {\n            String result = future.get();  \/\/ \u83b7\u53d6\u7ebf\u7a0b\u6267\u884c\u7ed3\u679c\n            System.out.println(result);\n        } catch (InterruptedException | ExecutionException e) {\n            e.printStackTrace();\n        } finally {\n            executor.shutdown();  \/\/ \u5173\u95ed\u7ebf\u7a0b\u6c60\n        }\n    }\n}<\/code><\/pre>\n\n\n\n<p><strong>\uff084\uff09\u4f7f\u7528\u533f\u540d\u5185\u90e8\u7c7b<\/strong><\/p>\n\n\n\n<p>\u76f4\u63a5\u4f7f\u7528\u533f\u540d\u5185\u90e8\u7c7b\u6216Lambda\u8868\u8fbe\u5f0f\u521b\u5efa\u7ebf\u7a0b\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-701920add03d2bca2316661ab8b0b792\"><code>public class Main {\n    public static void main(String&#91;] args) {\n        \/\/ \u4f7f\u7528\u533f\u540d\u5185\u90e8\u7c7b\n        Thread thread1 = new Thread(new Runnable() {\n            @Override\n            public void run() {\n                System.out.println(\"Anonymous inner class thread running\");\n            }\n        });\n        thread1.start();\n\n        \/\/ \u4f7f\u7528Lambda\u8868\u8fbe\u5f0f\n        Thread thread2 = new Thread(() -&gt; System.out.println(\"Lambda thread running\"));\n        thread2.start();\n    }\n}<\/code><\/pre>\n\n\n\n<h5 class=\"wp-block-heading\"><strong>\u4e09\u3001\u7ebf\u7a0b\u751f\u547d\u5468\u671f<\/strong><\/h5>\n\n\n\n<p>\u7ebf\u7a0b\u5305\u542b\u4e94\u4e2a\u72b6\u6001\uff1a<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img fetchpriority=\"high\" decoding=\"async\" width=\"700\" height=\"480\" src=\"https:\/\/www.talktop.cn\/wp-content\/uploads\/2024\/10\/image-6.png\" alt=\"\" class=\"wp-image-4022\" srcset=\"https:\/\/www.talktop.cn\/wp-content\/uploads\/2024\/10\/image-6.png 700w, https:\/\/www.talktop.cn\/wp-content\/uploads\/2024\/10\/image-6-300x206.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" \/><\/figure>\n\n\n\n<p><strong>\u65b0\u5efa\u72b6\u6001\uff1a<\/strong>\u7ebf\u7a0b\u5bf9\u8c61\u521b\u5efa\u540e\uff0c\u8fdb\u5165\u65b0\u5efa\u72b6\u6001\u3002<\/p>\n\n\n\n<p><strong>\u5c31\u7eea\u72b6\u6001\uff1a<\/strong>\u4e5f\u79f0\u4e3a\u53ef\u6267\u884c\u72b6\u6001\uff0c\u7ebf\u7a0b\u521b\u5efa\u540e\u5176\u5b83\u7ebf\u7a0b\u8c03\u7528\u4e86\u8be5\u5bf9\u8c61\u7684start()\u65b9\u6cd5\uff0c\u4ece\u800c\u542f\u52a8\u8be5\u7ebf\u7a0b\u3002<\/p>\n\n\n\n<p><strong>\u8fd0\u884c\u72b6\u6001\uff1a<\/strong>\u7ebf\u7a0b\u83b7\u53d6CPU\u6743\u9650\u8fdb\u884c\u6267\u884c\u3002\u9700\u8981\u6ce8\u610f\u7684\u662f\uff0c\u7ebf\u7a0b\u53ea\u80fd\u4ece\u5c31\u7eea\u72b6\u6001\u8fdb\u5165\u5230\u8fd0\u884c\u72b6\u6001\u3002<\/p>\n\n\n\n<p><strong>\u963b\u585e\u72b6\u6001\uff1a<\/strong>\u963b\u585e\u72b6\u6001\u662f\u7ebf\u7a0b\u56e0\u4e3a\u67d0\u79cd\u539f\u56e0\u653e\u5f03CPU\u4f7f\u7528\u6743\uff0c\u6682\u65f6\u505c\u6b62\u8fd0\u884c\u3002\u76f4\u5230\u7ebf\u7a0b\u8fdb\u5165\u5c31\u7eea\u72b6\u6001\uff0c\u624d\u6709\u673a\u4f1a\u8f6c\u5230\u8fd0\u884c\u72b6\u6001\u3002\u963b\u585e\u7684\u60c5\u51b5\u5206\u4e09\u79cd\uff1a<\/p>\n\n\n\n<p>(1) \u7b49\u5f85\u963b\u585e &#8212; \u901a\u8fc7\u8c03\u7528\u7ebf\u7a0b\u7684wait()\u65b9\u6cd5\uff0c\u8ba9\u7ebf\u7a0b\u7b49\u5f85\u67d0\u5de5\u4f5c\u7684\u5b8c\u6210\u3002<\/p>\n\n\n\n<p>(2) \u540c\u6b65\u963b\u585e &#8212; \u7ebf\u7a0b\u5728\u83b7\u53d6synchronized\u540c\u6b65\u9501\u5931\u8d25(\u56e0\u4e3a\u9501\u88ab\u5176\u5b83\u7ebf\u7a0b\u6240\u5360\u7528)\uff0c\u5b83\u4f1a\u8fdb\u5165\u540c\u6b65\u963b\u585e\u72b6\u6001\u3002<\/p>\n\n\n\n<p>(3) \u5176\u4ed6\u963b\u585e &#8212; \u901a\u8fc7\u8c03\u7528\u7ebf\u7a0b\u7684sleep()\u6216join()\u6216\u53d1\u51fa\u4e86I\/O\u8bf7\u6c42\u65f6\uff0c\u7ebf\u7a0b\u4f1a\u8fdb\u5165\u5230\u963b\u585e\u72b6\u6001\u3002\u5f53sleep()\u72b6\u6001\u8d85\u65f6\u3001join()\u7b49\u5f85\u7ebf\u7a0b\u7ec8\u6b62\u6216\u8005\u8d85\u65f6\u3001\u6216\u8005I\/O\u5904\u7406\u5b8c\u6bd5\u65f6\uff0c\u7ebf\u7a0b\u91cd\u65b0\u8f6c\u5165\u5c31\u7eea\u72b6\u6001\u3002<\/p>\n\n\n\n<p><strong>\u6b7b\u4ea1\u72b6\u6001\uff1a<\/strong>\u7ebf\u7a0b\u6267\u884c\u5b8c\u4e86\u6216\u8005\u56e0\u5f02\u5e38\u9000\u51fa\u4e86run()\u65b9\u6cd5\uff0c\u8be5\u7ebf\u7a0b\u7ed3\u675f\u751f\u547d\u5468\u671f\u3002<\/p>\n\n\n\n<h5 class=\"wp-block-heading\"><strong>\u56db\u3001\u7ebf\u7a0b\u5e38\u89c1\u64cd\u4f5c<\/strong><\/h5>\n\n\n\n<p><strong>\uff081\uff09\u7ebf\u7a0b\u4f11\u7720\uff08sleep()\uff09<\/strong><\/p>\n\n\n\n<p>\u4f7f\u5f53\u524d\u7ebf\u7a0b\u6682\u505c\u6267\u884c\u4e00\u6bb5\u65f6\u95f4\uff0c\u8fdb\u5165\u201c\u4f11\u7720\u201d\u72b6\u6001\uff0c\u8ba9\u51faCPU\uff0c\u4f46\u4e0d\u4f1a\u91ca\u653e\u9501\u3002<\/p>\n\n\n\n<p><strong>\uff082\uff09\u7ebf\u7a0b\u8ba9\u6b65\uff08yield()\uff09<\/strong><\/p>\n\n\n\n<p>\u8ba9\u51fa\u5f53\u524d\u7ebf\u7a0b\u7684CPU\u65f6\u95f4\u7247\uff0c\u8ba9\u7cfb\u7edf\u8c03\u5ea6\u5176\u4ed6\u76f8\u540c\u6216\u66f4\u9ad8\u4f18\u5148\u7ea7\u7684\u7ebf\u7a0b\u6267\u884c\uff0c\u5f53\u524d\u7ebf\u7a0b\u8fdb\u5165\u53ef\u8fd0\u884c\u72b6\u6001\uff0c\u4f46\u4e0d\u4fdd\u8bc1\u8ba9\u51fa\u65f6\u95f4\u7247\u3002<\/p>\n\n\n\n<p><strong>\uff083\uff09\u7ebf\u7a0b\u52a0\u5165\uff08join()\uff09<\/strong><\/p>\n\n\n\n<p>\u7b49\u5f85\u6307\u5b9a\u7ebf\u7a0b\u6267\u884c\u5b8c\u6bd5\uff0c\u5f53\u524d\u7ebf\u7a0b\u4f1a\u88ab\u963b\u585e\u76f4\u5230\u76ee\u6807\u7ebf\u7a0b\u7ed3\u675f\u6216\u8d85\u65f6\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-f991212dce270f4ca108d09be3f34567\"><code>public class Main {\n    public static void main(String&#91;] args) {\n        Thread thread = new Thread(() -&gt; {\n            try {\n                Thread.sleep(1000);\n                System.out.println(\"Thread finished\");\n            } catch (InterruptedException e) {\n                e.printStackTrace();\n            }\n        });\n\n        thread.start();\n\n        try {\n            thread.join();  \/\/ \u7b49\u5f85thread\u7ebf\u7a0b\u6267\u884c\u5b8c\u6bd5\n            System.out.println(\"Main thread resumes after join\");\n        } catch (InterruptedException e) {\n            e.printStackTrace();\n        }\n    }\n}<\/code><\/pre>\n\n\n\n<p><strong>\uff084\uff09\u7ebf\u7a0b\u4e2d\u65ad\uff08interrupt()\uff09<\/strong><\/p>\n\n\n\n<p>\u4e2d\u65ad\u7ebf\u7a0b\uff0c\u901a\u5e38\u7528\u4e8e\u901a\u77e5\u7ebf\u7a0b\u505c\u6b62\u6216\u6539\u53d8\u72b6\u6001\u3002<\/p>\n\n\n\n<p><strong>\uff085\uff09\u8bbe\u7f6e\u7ebf\u7a0b\u4f18\u5148\u7ea7\uff08setPriority()\uff09<\/strong><\/p>\n\n\n\n<p>\u8bbe\u7f6e\u7ebf\u7a0b\u7684\u4f18\u5148\u7ea7\uff0c\u4f18\u5148\u7ea7\u9ad8\u7684\u7ebf\u7a0b\u66f4\u6709\u53ef\u80fd\u5148\u88ab\u6267\u884c\u3002<\/p>\n\n\n\n<p><strong>\uff086\uff09\u7ebf\u7a0b\u7b49\u5f85\u4e0e\u901a\u77e5\uff08wait()\u3001notify()\u3001notifyAll()\uff09<\/strong><\/p>\n\n\n\n<p>\u7ebf\u7a0b\u53ef\u4ee5\u901a\u8fc7wait()\u65b9\u6cd5\u7b49\u5f85\u67d0\u4e2a\u6761\u4ef6\u53d1\u751f\uff0cnotify()\u6216notifyAll()\u65b9\u6cd5\u7528\u4e8e\u5524\u9192\u7b49\u5f85\u7684\u7ebf\u7a0b\u3002\u8fd9\u4e9b\u65b9\u6cd5\u5fc5\u987b\u5728\u540c\u6b65\u5757\uff08synchronized\uff09\u5185\u4f7f\u7528\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u4e00\u3001\u4ec0\u4e48\u662f\u7ebf\u7a0b \u7ebf\u7a0b\u662f\u5e76\u53d1\u7f16\u7a0b\u7684\u57fa\u672c\u5355\u4f4d\uff0c\u5b83\u662f\u7a0b\u5e8f\u6267\u884c\u7684\u6700\u5c0f\u5355\u4f4d\uff0cJava\u7a0b\u5e8f\u9ed8\u8ba4\u5355\u7ebf\u7a0b\uff0c\u6240\u6709\u7a0b\u5e8f\u90fd\u5728\u4e3b\u7ebf\u7a0b\u4e2d [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[118],"tags":[130,16],"class_list":["post-4021","post","type-post","status-publish","format-standard","hentry","category-118","tag-130","tag-java"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>\u638c\u63e1Java\u591a\u7ebf\u7a0b\uff1a\u63d0\u5347\u6027\u80fd\u7684\u5173\u952e\u6280\u672f\u4e0e\u6700\u4f73\u5b9e\u8df5<\/title>\n<meta name=\"description\" content=\"Java\u591a\u7ebf\u7a0b\u77e5\u8bc6\u70b9\uff1a\u4e00\u4e2a\u8fdb\u7a0b\u901a\u5e38\u5305\u542b\u591a\u4e2a\u7ebf\u7a0b\uff0c\u8fd9\u4e9b\u7ebf\u7a0b\u5171\u4eab\u8fdb\u7a0b\u7684\u8d44\u6e90\u3002\u7ebf\u7a0b\u95f4\u53ef\u4ee5\u901a\u8fc7\u5171\u4eab\u5185\u5b58\u8fdb\u884c\u901a\u4fe1\uff0c\u8fd9\u4f7f\u5f97\u7ebf\u7a0b\u7684\u521b\u5efa\u548c\u4e0a\u4e0b\u6587\u5207\u6362\u6bd4\u8fdb\u7a0b\u66f4\u4e3a\u8f7b\u91cf\u548c\u9ad8\u6548\u3002\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.talktop.cn\/?p=4021\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.talktop.cn\/?p=4021#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.talktop.cn\/?p=4021\"},\"author\":{\"name\":\"AI\u98ce\u5411\u6807\",\"@id\":\"https:\/\/www.talktop.cn\/#\/schema\/person\/25908db5f654913a22bc38d48fad71ab\"},\"headline\":\"\u638c\u63e1Java\u591a\u7ebf\u7a0b\uff1a\u63d0\u5347\u6027\u80fd\u7684\u5173\u952e\u6280\u672f\u4e0e\u6700\u4f73\u5b9e\u8df5\",\"datePublished\":\"2024-10-07T06:28:01+00:00\",\"dateModified\":\"2024-11-12T03:18:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.talktop.cn\/?p=4021\"},\"wordCount\":50,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.talktop.cn\/#\/schema\/person\/25908db5f654913a22bc38d48fad71ab\"},\"image\":{\"@id\":\"https:\/\/www.talktop.cn\/?p=4021#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.talktop.cn\/wp-content\/uploads\/2024\/10\/image-6.png\",\"keywords\":[\"\u591a\u7ebf\u7a0b\",\"\u7f16\u7a0b\"],\"articleSection\":[\"\u540e\u7aef\u5f00\u53d1\"],\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.talktop.cn\/?p=4021#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.talktop.cn\/?p=4021\",\"url\":\"https:\/\/www.talktop.cn\/?p=4021\",\"name\":\"\u638c\u63e1Java\u591a\u7ebf\u7a0b\uff1a\u63d0\u5347\u6027\u80fd\u7684\u5173\u952e\u6280\u672f\u4e0e\u6700\u4f73\u5b9e\u8df5\",\"isPartOf\":{\"@id\":\"https:\/\/www.talktop.cn\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.talktop.cn\/?p=4021#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.talktop.cn\/?p=4021#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.talktop.cn\/wp-content\/uploads\/2024\/10\/image-6.png\",\"datePublished\":\"2024-10-07T06:28:01+00:00\",\"dateModified\":\"2024-11-12T03:18:59+00:00\",\"description\":\"Java\u591a\u7ebf\u7a0b\u77e5\u8bc6\u70b9\uff1a\u4e00\u4e2a\u8fdb\u7a0b\u901a\u5e38\u5305\u542b\u591a\u4e2a\u7ebf\u7a0b\uff0c\u8fd9\u4e9b\u7ebf\u7a0b\u5171\u4eab\u8fdb\u7a0b\u7684\u8d44\u6e90\u3002\u7ebf\u7a0b\u95f4\u53ef\u4ee5\u901a\u8fc7\u5171\u4eab\u5185\u5b58\u8fdb\u884c\u901a\u4fe1\uff0c\u8fd9\u4f7f\u5f97\u7ebf\u7a0b\u7684\u521b\u5efa\u548c\u4e0a\u4e0b\u6587\u5207\u6362\u6bd4\u8fdb\u7a0b\u66f4\u4e3a\u8f7b\u91cf\u548c\u9ad8\u6548\u3002\",\"breadcrumb\":{\"@id\":\"https:\/\/www.talktop.cn\/?p=4021#breadcrumb\"},\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.talktop.cn\/?p=4021\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"https:\/\/www.talktop.cn\/?p=4021#primaryimage\",\"url\":\"https:\/\/www.talktop.cn\/wp-content\/uploads\/2024\/10\/image-6.png\",\"contentUrl\":\"https:\/\/www.talktop.cn\/wp-content\/uploads\/2024\/10\/image-6.png\",\"width\":700,\"height\":480},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.talktop.cn\/?p=4021#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u9996\u9875\",\"item\":\"https:\/\/www.talktop.cn\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\u638c\u63e1Java\u591a\u7ebf\u7a0b\uff1a\u63d0\u5347\u6027\u80fd\u7684\u5173\u952e\u6280\u672f\u4e0e\u6700\u4f73\u5b9e\u8df5\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.talktop.cn\/#website\",\"url\":\"https:\/\/www.talktop.cn\/\",\"name\":\"AI\u98ce\u5411\u6807\",\"description\":\"ChatGPT \u4eba\u5de5\u667a\u80fd \u7f16\u7a0b\u6280\u672f AIGC \u540e\u7aef\u6280\u672f \u524d\u7aef\u6280\u672f \u70ed\u95e8\u63d2\u4ef6 \u8fd0\u8425\u76f8\u5173 ChatGPT\u8ba2\u9605 Claude\u5145\u503c \u6d77\u5916\u5145\u503c \u8c37\u6b4c\u90ae\u7bb1\",\"publisher\":{\"@id\":\"https:\/\/www.talktop.cn\/#\/schema\/person\/25908db5f654913a22bc38d48fad71ab\"},\"alternateName\":\"AI\u98ce\u5411\u6807\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.talktop.cn\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"zh-Hans\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/www.talktop.cn\/#\/schema\/person\/25908db5f654913a22bc38d48fad71ab\",\"name\":\"AI\u98ce\u5411\u6807\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"https:\/\/www.talktop.cn\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/www.talktop.cn\/wp-content\/uploads\/2023\/10\/cropped-f09060ba975518b80d3b0b63b47108a6.jpeg\",\"contentUrl\":\"https:\/\/www.talktop.cn\/wp-content\/uploads\/2023\/10\/cropped-f09060ba975518b80d3b0b63b47108a6.jpeg\",\"width\":512,\"height\":512,\"caption\":\"AI\u98ce\u5411\u6807\"},\"logo\":{\"@id\":\"https:\/\/www.talktop.cn\/#\/schema\/person\/image\/\"},\"sameAs\":[\"http:\/\/\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\u638c\u63e1Java\u591a\u7ebf\u7a0b\uff1a\u63d0\u5347\u6027\u80fd\u7684\u5173\u952e\u6280\u672f\u4e0e\u6700\u4f73\u5b9e\u8df5","description":"Java\u591a\u7ebf\u7a0b\u77e5\u8bc6\u70b9\uff1a\u4e00\u4e2a\u8fdb\u7a0b\u901a\u5e38\u5305\u542b\u591a\u4e2a\u7ebf\u7a0b\uff0c\u8fd9\u4e9b\u7ebf\u7a0b\u5171\u4eab\u8fdb\u7a0b\u7684\u8d44\u6e90\u3002\u7ebf\u7a0b\u95f4\u53ef\u4ee5\u901a\u8fc7\u5171\u4eab\u5185\u5b58\u8fdb\u884c\u901a\u4fe1\uff0c\u8fd9\u4f7f\u5f97\u7ebf\u7a0b\u7684\u521b\u5efa\u548c\u4e0a\u4e0b\u6587\u5207\u6362\u6bd4\u8fdb\u7a0b\u66f4\u4e3a\u8f7b\u91cf\u548c\u9ad8\u6548\u3002","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.talktop.cn\/?p=4021","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.talktop.cn\/?p=4021#article","isPartOf":{"@id":"https:\/\/www.talktop.cn\/?p=4021"},"author":{"name":"AI\u98ce\u5411\u6807","@id":"https:\/\/www.talktop.cn\/#\/schema\/person\/25908db5f654913a22bc38d48fad71ab"},"headline":"\u638c\u63e1Java\u591a\u7ebf\u7a0b\uff1a\u63d0\u5347\u6027\u80fd\u7684\u5173\u952e\u6280\u672f\u4e0e\u6700\u4f73\u5b9e\u8df5","datePublished":"2024-10-07T06:28:01+00:00","dateModified":"2024-11-12T03:18:59+00:00","mainEntityOfPage":{"@id":"https:\/\/www.talktop.cn\/?p=4021"},"wordCount":50,"commentCount":0,"publisher":{"@id":"https:\/\/www.talktop.cn\/#\/schema\/person\/25908db5f654913a22bc38d48fad71ab"},"image":{"@id":"https:\/\/www.talktop.cn\/?p=4021#primaryimage"},"thumbnailUrl":"https:\/\/www.talktop.cn\/wp-content\/uploads\/2024\/10\/image-6.png","keywords":["\u591a\u7ebf\u7a0b","\u7f16\u7a0b"],"articleSection":["\u540e\u7aef\u5f00\u53d1"],"inLanguage":"zh-Hans","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.talktop.cn\/?p=4021#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.talktop.cn\/?p=4021","url":"https:\/\/www.talktop.cn\/?p=4021","name":"\u638c\u63e1Java\u591a\u7ebf\u7a0b\uff1a\u63d0\u5347\u6027\u80fd\u7684\u5173\u952e\u6280\u672f\u4e0e\u6700\u4f73\u5b9e\u8df5","isPartOf":{"@id":"https:\/\/www.talktop.cn\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.talktop.cn\/?p=4021#primaryimage"},"image":{"@id":"https:\/\/www.talktop.cn\/?p=4021#primaryimage"},"thumbnailUrl":"https:\/\/www.talktop.cn\/wp-content\/uploads\/2024\/10\/image-6.png","datePublished":"2024-10-07T06:28:01+00:00","dateModified":"2024-11-12T03:18:59+00:00","description":"Java\u591a\u7ebf\u7a0b\u77e5\u8bc6\u70b9\uff1a\u4e00\u4e2a\u8fdb\u7a0b\u901a\u5e38\u5305\u542b\u591a\u4e2a\u7ebf\u7a0b\uff0c\u8fd9\u4e9b\u7ebf\u7a0b\u5171\u4eab\u8fdb\u7a0b\u7684\u8d44\u6e90\u3002\u7ebf\u7a0b\u95f4\u53ef\u4ee5\u901a\u8fc7\u5171\u4eab\u5185\u5b58\u8fdb\u884c\u901a\u4fe1\uff0c\u8fd9\u4f7f\u5f97\u7ebf\u7a0b\u7684\u521b\u5efa\u548c\u4e0a\u4e0b\u6587\u5207\u6362\u6bd4\u8fdb\u7a0b\u66f4\u4e3a\u8f7b\u91cf\u548c\u9ad8\u6548\u3002","breadcrumb":{"@id":"https:\/\/www.talktop.cn\/?p=4021#breadcrumb"},"inLanguage":"zh-Hans","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.talktop.cn\/?p=4021"]}]},{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"https:\/\/www.talktop.cn\/?p=4021#primaryimage","url":"https:\/\/www.talktop.cn\/wp-content\/uploads\/2024\/10\/image-6.png","contentUrl":"https:\/\/www.talktop.cn\/wp-content\/uploads\/2024\/10\/image-6.png","width":700,"height":480},{"@type":"BreadcrumbList","@id":"https:\/\/www.talktop.cn\/?p=4021#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9875","item":"https:\/\/www.talktop.cn\/"},{"@type":"ListItem","position":2,"name":"\u638c\u63e1Java\u591a\u7ebf\u7a0b\uff1a\u63d0\u5347\u6027\u80fd\u7684\u5173\u952e\u6280\u672f\u4e0e\u6700\u4f73\u5b9e\u8df5"}]},{"@type":"WebSite","@id":"https:\/\/www.talktop.cn\/#website","url":"https:\/\/www.talktop.cn\/","name":"AI\u98ce\u5411\u6807","description":"ChatGPT \u4eba\u5de5\u667a\u80fd \u7f16\u7a0b\u6280\u672f AIGC \u540e\u7aef\u6280\u672f \u524d\u7aef\u6280\u672f \u70ed\u95e8\u63d2\u4ef6 \u8fd0\u8425\u76f8\u5173 ChatGPT\u8ba2\u9605 Claude\u5145\u503c \u6d77\u5916\u5145\u503c \u8c37\u6b4c\u90ae\u7bb1","publisher":{"@id":"https:\/\/www.talktop.cn\/#\/schema\/person\/25908db5f654913a22bc38d48fad71ab"},"alternateName":"AI\u98ce\u5411\u6807","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.talktop.cn\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"zh-Hans"},{"@type":["Person","Organization"],"@id":"https:\/\/www.talktop.cn\/#\/schema\/person\/25908db5f654913a22bc38d48fad71ab","name":"AI\u98ce\u5411\u6807","image":{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"https:\/\/www.talktop.cn\/#\/schema\/person\/image\/","url":"https:\/\/www.talktop.cn\/wp-content\/uploads\/2023\/10\/cropped-f09060ba975518b80d3b0b63b47108a6.jpeg","contentUrl":"https:\/\/www.talktop.cn\/wp-content\/uploads\/2023\/10\/cropped-f09060ba975518b80d3b0b63b47108a6.jpeg","width":512,"height":512,"caption":"AI\u98ce\u5411\u6807"},"logo":{"@id":"https:\/\/www.talktop.cn\/#\/schema\/person\/image\/"},"sameAs":["http:\/\/\/"]}]}},"_links":{"self":[{"href":"https:\/\/www.talktop.cn\/index.php?rest_route=\/wp\/v2\/posts\/4021","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.talktop.cn\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.talktop.cn\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.talktop.cn\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.talktop.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=4021"}],"version-history":[{"count":0,"href":"https:\/\/www.talktop.cn\/index.php?rest_route=\/wp\/v2\/posts\/4021\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.talktop.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=4021"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.talktop.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=4021"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.talktop.cn\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=4021"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}