{"id":4619,"date":"2020-11-26T08:15:54","date_gmt":"2020-11-25T23:15:54","guid":{"rendered":"https:\/\/taki-lab.site\/bocci\/?p=4619"},"modified":"2020-11-26T08:15:57","modified_gmt":"2020-11-25T23:15:57","slug":"%e3%80%90%e3%83%87%e3%82%b6%e3%82%a4%e3%83%b3%e3%83%91%e3%82%bf%e3%83%bc%e3%83%b3%e3%80%91prototype%e3%83%91%e3%82%bf%e3%83%bc%e3%83%b3","status":"publish","type":"post","link":"https:\/\/taki-lab.site\/bocci\/?p=4619","title":{"rendered":"\u3010\u30c7\u30b6\u30a4\u30f3\u30d1\u30bf\u30fc\u30f3\u3011Prototype\u30d1\u30bf\u30fc\u30f3"},"content":{"rendered":"\n<p>Prototype\u30d1\u30bf\u30fc\u30f3\u306e\u30b3\u30fc\u30c8\u4f8b\u3067\u3059\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>package org.example.prototype;\r\n\r\nimport java.io.Closeable;\r\n\r\npublic interface Prototype extends Cloneable {\r\n    public void method1();\r\n    public void method2();\r\n    public Prototype createClone();\r\n}\r\n<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>package org.example.prototype;\r\n\r\nimport java.io.IOException;\r\n\r\npublic class ConcretePrototype implements Prototype {\r\n    public ConcretePrototype() {\r\n        super();\r\n    }\r\n\r\n    @Override\r\n    public void method1() {\r\n\r\n    }\r\n\r\n    @Override\r\n    public void method2() {\r\n\r\n    }\r\n\r\n    @Override\r\n    public Prototype createClone() {\r\n        Prototype prototype = null;\r\n\r\n        try {\r\n            prototype = (Prototype)clone();\r\n        }catch (CloneNotSupportedException e) {\r\n            e.printStackTrace();\r\n        }\r\n        return prototype;\r\n    }\r\n}\r\n<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>package org.example.prototype;\r\n\r\npublic class Main {\r\n    public static void main(String&#91;] args){\r\n        Prototype PrototypeObject = new ConcretePrototype();\r\n        Prototype cloneObject = PrototypeObject.createClone();\r\n        cloneObject.method1();\r\n        cloneObject.method2();\r\n    }\r\n}\r\n<\/code><\/pre>\n\n\n\n<p>Prototype\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9\u3092\u5b9f\u88c5\u3057\u305fConcretePrototype\u3092\u4f5c\u6210\u3057\u3001\u4ee5\u5f8c\u3001createClone()\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u7528\u3057\u3066\u8907\u88fd\u3057\u305f\u3082\u306e\u3092\u4f7f\u7528\u3059\u308b\u3001\u3068\u3044\u3046\u4f7f\u3044\u65b9\u3092\u3057\u307e\u3059\u3002<\/p>\n\n\n\n<p>Cloneable\u3092\u5b9f\u88c5\u3057\u306a\u3044\u3068Clone()\u5b9f\u884c\u6642\u306bCloneNotSupportedException\u304c\u767a\u751f\u3059\u308b\u307f\u305f\u3044\u3067\u3059\u3002<\/p>\n\n\n\n<p>\u3053\u308c\u3001Java\u4ee5\u5916\u306b\u3082C#\u3068\u304b\u306b\u3082\u7121\u3044\u3063\u3059\u304b\u306d\uff1f<\/p>\n\n\n\n<p>\u203bC#\u3067\u306fICloneable\u3092\u5b9f\u88c5\u3059\u308b\u3068\u4f7f\u3048\u308b\u307f\u305f\u3044\u3067\u3059\u3002<\/p>\n\n\n\n<p>\u3042\u3068\u3001Clone\u306f\u53c2\u7167\u578b\u306e\u30e1\u30f3\u30d0\u30fc\u304c\u3044\u305f\u5834\u5408\u3001\u8907\u88fd\u3057\u305fObject\u3082\u8907\u88fd\u524d\u3068\u540c\u3058\u53c2\u7167\u5148\u3092\u53c2\u7167\u3059\u308b\u3089\u3057\u3044\u3067\u3059\u3002<\/p>\n\n\n\n<p>\u5b8c\u5168\u306b\u8907\u88fd\u3059\u308b\u306b\u306f\u3001Clone\u3092Override\u3057\u3066\u3001\u53c2\u7167\u578b\u306e\u30e1\u30f3\u30d0\u30fc\u3092\u3055\u3089\u306bClone\u3059\u308b\u3001\u3068\u3044\u3046\u3084\u308a\u65b9\u304c\u5fc5\u8981\u306b\u306a\u308b\u3088\u3046\u3067\u3059\u3002<\/p>\n\n\n\n<p>Clone\u3092\u4f7f\u7528\u3059\u308b\u5834\u5408\u306f\u305d\u306e\u5f53\u305f\u308a\u6c17\u3092\u3064\u3051\u306a\u3044\u3068\u3044\u3051\u306a\u3044\u3067\u3059\u306d\u3002<\/p>\n\n\n\n<a href=\"\/\/blog.with2.net\/link\/?2023426:1010\" target=\"_blank\" rel=\"noopener noreferrer\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2019\/12\/03a6eee54039f74ded0b8f7548b1868f.png?w=474\" title=\"\u30d1\u30bd\u30b3\u30f3\u30e9\u30f3\u30ad\u30f3\u30b0\"><\/a>\n\n","protected":false},"excerpt":{"rendered":"<p>Prototype\u30d1\u30bf\u30fc\u30f3\u306e\u30b3\u30fc\u30c8\u4f8b\u3067\u3059\u3002 Prototype\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9\u3092\u5b9f\u88c5\u3057\u305fConcretePrototype\u3092\u4f5c\u6210\u3057\u3001\u4ee5\u5f8c\u3001createClone()\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u7528\u3057\u3066\u8907\u88fd\u3057\u305f\u3082\u306e\u3092\u4f7f\u7528\u3059\u308b\u3001\u3068\u3044\u3046\u4f7f\u3044\u65b9\u3092 &hellip; <a href=\"https:\/\/taki-lab.site\/bocci\/?p=4619\" class=\"more-link\">\u7d9a\u304d\u3092\u8aad\u3080 <span class=\"screen-reader-text\">\u3010\u30c7\u30b6\u30a4\u30f3\u30d1\u30bf\u30fc\u30f3\u3011Prototype\u30d1\u30bf\u30fc\u30f3<\/span> <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"\u3010\u30c7\u30b6\u30a4\u30f3\u30d1\u30bf\u30fc\u30f3\u3011Prototype\u30d1\u30bf\u30fc\u30f3\n#TechCommit\n","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[225,3],"tags":[226],"class_list":["post-4619","post","type-post","status-publish","format-standard","hentry","category-225","category-3","tag-226"],"aioseo_notices":[],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p8SDbY-1cv","jetpack-related-posts":[{"id":4737,"url":"https:\/\/taki-lab.site\/bocci\/?p=4737","url_meta":{"origin":4619,"position":0},"title":"\u3010\u30c7\u30b6\u30a4\u30f3\u30d1\u30bf\u30fc\u30f3\u3011Bridge\u30d1\u30bf\u30fc\u30f3","author":"taki","date":"2020\u5e7412\u670817\u65e5","format":false,"excerpt":"Bridge\u30d1\u30bf\u30fc\u30f3\u306e\u30b5\u30f3\u30d7\u30eb\u30b3\u30fc\u30c9\u3067\u3059\u3002 package org.example.bridge; \u2026","rel":"","context":"\u30c7\u30b6\u30a4\u30f3\u30d1\u30bf\u30fc\u30f3","block_context":{"text":"\u30c7\u30b6\u30a4\u30f3\u30d1\u30bf\u30fc\u30f3","link":"https:\/\/taki-lab.site\/bocci\/?cat=225"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":4776,"url":"https:\/\/taki-lab.site\/bocci\/?p=4776","url_meta":{"origin":4619,"position":1},"title":"\u3010\u30c7\u30b6\u30a4\u30f3\u30d1\u30bf\u30fc\u30f3\u3011Composite\u30d1\u30bf\u30fc\u30f3","author":"taki","date":"2020\u5e7412\u670824\u65e5","format":false,"excerpt":"Composite\u30d1\u30bf\u30fc\u30f3\u306e\u30b5\u30f3\u30d7\u30eb\u30b3\u30fc\u30c9\u3067\u3059\u3002 package org.example.compo\u2026","rel":"","context":"\u30c7\u30b6\u30a4\u30f3\u30d1\u30bf\u30fc\u30f3","block_context":{"text":"\u30c7\u30b6\u30a4\u30f3\u30d1\u30bf\u30fc\u30f3","link":"https:\/\/taki-lab.site\/bocci\/?cat=225"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":4822,"url":"https:\/\/taki-lab.site\/bocci\/?p=4822","url_meta":{"origin":4619,"position":2},"title":"\u30c7\u30b6\u30a4\u30f3\u30d1\u30bf\u30fc\u30f3\u3011Decorator\u30d1\u30bf\u30fc\u30f3","author":"taki","date":"2020\u5e7412\u670831\u65e5","format":false,"excerpt":"Decorator\u30d1\u30bf\u30fc\u30f3\u306e\u30b5\u30f3\u30d7\u30eb\u30b3\u30fc\u30c9\u3067\u3059\u3002 package org.example.decor\u2026","rel":"","context":"\u30c7\u30b6\u30a4\u30f3\u30d1\u30bf\u30fc\u30f3","block_context":{"text":"\u30c7\u30b6\u30a4\u30f3\u30d1\u30bf\u30fc\u30f3","link":"https:\/\/taki-lab.site\/bocci\/?cat=225"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":4554,"url":"https:\/\/taki-lab.site\/bocci\/?p=4554","url_meta":{"origin":4619,"position":3},"title":"\u3010\u30c7\u30b6\u30a4\u30f3\u30d1\u30bf\u30fc\u30f3\u3011AbstructFACTORY\u30d1\u30bf\u30fc\u30f3","author":"taki","date":"2020\u5e7411\u670813\u65e5","format":false,"excerpt":"AbstructFactory\u30d1\u30bf\u30fc\u30f3\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u3059\u3002 package org.example.ab\u2026","rel":"","context":"\u30c7\u30b6\u30a4\u30f3\u30d1\u30bf\u30fc\u30f3","block_context":{"text":"\u30c7\u30b6\u30a4\u30f3\u30d1\u30bf\u30fc\u30f3","link":"https:\/\/taki-lab.site\/bocci\/?cat=225"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":4858,"url":"https:\/\/taki-lab.site\/bocci\/?p=4858","url_meta":{"origin":4619,"position":4},"title":"\u30c7\u30b6\u30a4\u30f3\u30d1\u30bf\u30fc\u30f3\u3011Facade\u30d1\u30bf\u30fc\u30f3","author":"taki","date":"2021\u5e741\u67087\u65e5","format":false,"excerpt":"Facade\u30d1\u30bf\u30fc\u30f3\u306e\u30b5\u30f3\u30d7\u30eb\u30b3\u30fc\u30c9\u3067\u3059\u3002 package org.example.facade; \u2026","rel":"","context":"\u30c7\u30b6\u30a4\u30f3\u30d1\u30bf\u30fc\u30f3","block_context":{"text":"\u30c7\u30b6\u30a4\u30f3\u30d1\u30bf\u30fc\u30f3","link":"https:\/\/taki-lab.site\/bocci\/?cat=225"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":6620,"url":"https:\/\/taki-lab.site\/bocci\/?p=6620","url_meta":{"origin":4619,"position":5},"title":"\u3010\u30c7\u30b6\u30a4\u30f3\u30d1\u30bf\u30fc\u30f3\u3011Mediator\u30d1\u30bf\u30fc\u30f3","author":"taki","date":"2021\u5e747\u670825\u65e5","format":false,"excerpt":"\u8907\u6570\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8(Colleague)\u306e\u5236\u5fa1\u3092\u884c\u3046\u306e\u306bMediator\u30af\u30e9\u30b9\u3092\u4f5c\u6210\u3057\u3001\u3053\u308c\u3092\u4ecb\u3057\u3066\u2026","rel":"","context":"\u30c7\u30b6\u30a4\u30f3\u30d1\u30bf\u30fc\u30f3","block_context":{"text":"\u30c7\u30b6\u30a4\u30f3\u30d1\u30bf\u30fc\u30f3","link":"https:\/\/taki-lab.site\/bocci\/?cat=225"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"jetpack_likes_enabled":true,"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts\/4619","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=4619"}],"version-history":[{"count":1,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts\/4619\/revisions"}],"predecessor-version":[{"id":4620,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts\/4619\/revisions\/4620"}],"wp:attachment":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=4619"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=4619"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=4619"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}