{"id":464,"date":"2024-10-09T09:55:48","date_gmt":"2024-10-09T09:55:48","guid":{"rendered":"https:\/\/www.go-uml.com\/ja\/?p=464"},"modified":"2024-10-09T09:55:48","modified_gmt":"2024-10-09T09:55:48","slug":"understanding-classes-and-objects-in-uml","status":"publish","type":"post","link":"https:\/\/www.go-uml.com\/ja\/understanding-classes-and-objects-in-uml\/","title":{"rendered":"Understanding Classes and Objects in UML"},"content":{"rendered":"<p>In the field of software development, particularly within object-oriented design, the Unified Modeling Language (UML) serves as a standardized framework for visualizing system architecture. At the heart of UML are the concepts of classes and objects, which play distinct yet interconnected roles in representing both data and behavior within a system. This article aims to clarify these concepts, highlighting their importance and applications in UML design.<\/p>\n<h2>The Importance of Classes and Objects<\/h2>\n<p>Understanding the distinction between classes and objects is crucial for several key reasons:<\/p>\n<h3>1. Abstraction<\/h3>\n<p>Classes enable developers to abstract complex systems into manageable components, allowing them to focus on high-level functionality without being overwhelmed by implementation details.<\/p>\n<h3>2. Reusability<\/h3>\n<p>Classes promote code efficiency by being reusable across different parts of an application or even in multiple projects, thereby reducing redundancy.<\/p>\n<h3>3. Encapsulation<\/h3>\n<p>By grouping data and methods together, classes help encapsulate functionality, resulting in clearer and more organized code.<\/p>\n<h3>4. Inheritance<\/h3>\n<p>Classes can inherit properties and behaviors from other classes, facilitating a hierarchical organization of data and minimizing code duplication.<\/p>\n<h2>When to Use Classes and Objects<\/h2>\n<h3>1. During System Design<\/h3>\n<p>Classes are fundamental in the design phase of a software project. They help structure and organize the system\u2019s architecture effectively.<\/p>\n<h3>2. While Implementing Features<\/h3>\n<p>As developers build features, they instantiate classes into objects, enabling interaction with and manipulation of data.<\/p>\n<h3>3. In Testing and Maintenance<\/h3>\n<p>Understanding the relationships between classes and objects is essential for testing individual components and maintaining the overall codebase.<\/p>\n<h2>Modeling Classes and Objects in UML<\/h2>\n<h3>Class Diagrams<\/h3>\n<p>Class diagrams represent the static structure of a system. Here\u2019s how to create a class diagram:<\/p>\n<ol>\n<li><strong>Identify Classes:<\/strong> Determine the main entities in your system and define their attributes and methods.<\/li>\n<li><strong>Define Relationships:<\/strong> Establish how classes relate to one another, such as through associations, generalizations, or dependencies. For example, in a class diagram, <code>NormalOrder<\/code> and <code>SpecialOrder<\/code> may be shown as subclasses of <code>Order<\/code>, indicating an inheritance relationship.<\/li>\n<li><strong>Draw the Diagram:<\/strong> Use UML notation to visualize the identified classes and their relationships.<\/li>\n<\/ol>\n<h3>Object Diagrams<\/h3>\n<p>Object diagrams depict specific instances of classes at a particular moment, illustrating the state of a system:<\/p>\n<ol>\n<li><strong>Instantiate Classes:<\/strong> Create objects based on the previously defined classes.<\/li>\n<li><strong>Assign Values:<\/strong> Populate the attributes of the objects with actual data.<\/li>\n<li><strong>Visualize Relationships:<\/strong> Show how these objects relate to one another.<\/li>\n<\/ol>\n<h2>Example: Class vs. Object Diagram<\/h2>\n<p><img decoding=\"async\" src=\"https:\/\/cdn-images.visual-paradigm.com\/guide\/uml\/what-is-object-diagram\/02-object-diagram-at-a-glance.png\" alt=\"Object Diagram at a Glance\" \/><\/p>\n<p>To further clarify the distinction, consider the following example focusing on the <code>Department<\/code> class.<\/p>\n<h3>Class Diagram Overview<\/h3>\n<ul>\n<li><strong>Class Definition:<\/strong>\n<ul>\n<li><strong>Department:<\/strong>\n<ul>\n<li><strong>Attributes:<\/strong> <code>degree: String<\/code><\/li>\n<li>This class serves as a blueprint for department objects.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n<li><strong>Relationships:<\/strong>\n<ul>\n<li><strong>Aggregation\/Composition:<\/strong> The notation (0..*) indicates that a <code>Department<\/code> can have zero or more subdepartments.<\/li>\n<li><strong>Multiplicity:<\/strong> The <code>1<\/code> next to the <code>Department<\/code> signifies that each department can be linked to one or more subdepartments, indicating a one-to-many relationship.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<h3>Object Diagram Overview<\/h3>\n<ul>\n<li><strong>Instances:<\/strong>\n<ul>\n<li><strong>mathStat1: Department<\/strong> with <code>degree = both<\/code><\/li>\n<li><strong>statistics: Department<\/strong> with <code>degree = both<\/code><\/li>\n<li><strong>math: Department<\/strong> with <code>degree = both<\/code><\/li>\n<li><strong>appliedMath: Department<\/strong> with <code>degree = graduate<\/code><\/li>\n<li><strong>appliedMath1: Department<\/strong> with <code>degree = undergraduate<\/code><\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p>The object diagram illustrates specific instances of the <code>Department<\/code> class, emphasizing actual values for each instance&#8217;s attributes and how these instances relate to the class structure defined in the class diagram.<\/p>\n<h2>Additional Example: Customer and Order<\/h2>\n<p>Another example illustrates the relationship between class diagrams and object diagrams:<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/cdn-images.visual-paradigm.com\/guide\/uml\/what-is-object-diagram\/03-class-diagram-to-object-diagram.png\" alt=\"Class Diagram to Object Diagram\" \/><\/p>\n<h3>Class Diagram Components<\/h3>\n<ul>\n<li><strong>Classes:<\/strong>\n<ul>\n<li><strong>Customer:<\/strong>\n<ul>\n<li>Attributes: <code>name: String<\/code>, <code>location: String<\/code><\/li>\n<li>Methods: <code>sendOrder()<\/code>, <code>receiveOrder()<\/code><\/li>\n<\/ul>\n<\/li>\n<li><strong>Order:<\/strong>\n<ul>\n<li>Attributes: <code>date: Date<\/code>, <code>number: String<\/code><\/li>\n<li>Methods: <code>confirm()<\/code>, <code>close()<\/code><\/li>\n<\/ul>\n<\/li>\n<li><strong>NormalOrder<\/strong> and <strong>SpecialOrder<\/strong> inherit from <code>Order<\/code>.<\/li>\n<\/ul>\n<\/li>\n<li><strong>Relationships:<\/strong>\n<ul>\n<li><strong>Generalization:<\/strong> Arrows indicate inheritance. <code>NormalOrder<\/code> and <code>SpecialOrder<\/code> are subclasses of <code>Order<\/code>.<\/li>\n<li><strong>Aggregation:<\/strong> A line connects <code>Customer<\/code> to <code>Order<\/code>, indicating that a <code>Customer<\/code> can have multiple <code>Orders<\/code> (1-to-many relationship).<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<h3>Object Diagram Components<\/h3>\n<ul>\n<li><strong>Instances:<\/strong>\n<ul>\n<li><strong>C1: Customer<\/strong> (specific values not shown)<\/li>\n<li><strong>O1, O2, O3: Orders<\/strong> with specific <code>number<\/code> attributes:\n<ul>\n<li><code>O1 = 12<\/code>, <code>O2 = 61<\/code>, <code>O3 = 88<\/code><\/li>\n<\/ul>\n<\/li>\n<li><strong>S1, S2: SpecialOrders<\/strong> with specific values:\n<ul>\n<li><code>S1 = 43<\/code>, <code>S2 = 50<\/code><\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p>The object diagram illustrates how these instances relate to one another, showcasing the 1-to-many relationship.<\/p>\n<h2>Summary of Transition from Class to Object Diagram<\/h2>\n<ul>\n<li><strong>Class Diagram:<\/strong> Provides a static overview of the system structure, displaying classes, their attributes, methods, and relationships.<\/li>\n<li><strong>Object Diagram:<\/strong> Illustrates specific instances of those classes, demonstrating actual data values and their interrelations at a given moment.<\/li>\n<\/ul>\n<p>This transition from class to object diagrams is essential for understanding both the design and implementation stages of software development, allowing developers to visualize and manage system complexities effectively.<\/p>\n<h2>Conclusion<\/h2>\n<p>Grasping the difference between classes and objects in UML is fundamental for effective software design. Classes provide the structure and blueprint for creating complex systems, while objects instantiate those structures into usable components. By mastering these concepts, developers can design more efficient, maintainable, and scalable software solutions. Recognizing when and how to use classes and objects will significantly enhance the quality of software development processes, whether during initial design or throughout the development lifecycle.<\/p>\n<p>&nbsp;<\/p>\n<ul>\n<li><a href=\"https:\/\/www.visual-paradigm.com\/guide\/uml-unified-modeling-language\/uml-class-diagram-tutorial\" target=\"_blank\" rel=\"noopener\">UML Class Diagram Tutorial &#8211; Visual Paradigm<\/a><\/li>\n<li><a href=\"https:\/\/www.visual-paradigm.com\/guide\/uml-unified-modeling-language\/what-is-object-diagram\" target=\"_blank\" rel=\"noopener\">What is Object Diagram? &#8211; Visual Paradigm<\/a><\/li>\n<li><a href=\"https:\/\/guides.visual-paradigm.com\/object-diagram-in-uml-bridging-the-gap-between-classes-and-instances\" target=\"_blank\" rel=\"noopener\">Object Diagram in UML: Bridging the Gap Between Classes and Instances<\/a><\/li>\n<li><a href=\"https:\/\/guides.visual-paradigm.com\/unveiling-uml-navigating-the-differences-between-object-diagrams-and-class-diagrams\" target=\"_blank\" rel=\"noopener\">Unveiling UML: Navigating the Differences Between Object Diagrams and Class Diagrams<\/a><\/li>\n<li><a href=\"https:\/\/online.visual-paradigm.com\/diagrams\/tutorials\/class-diagram-tutorial\" target=\"_blank\" rel=\"noopener\">Class Diagram Tutorial &#8211; Visual Paradigm<\/a><\/li>\n<li><a href=\"https:\/\/www.visual-paradigm.com\/guide\/uml-unified-modeling-language\/what-is-class-diagram\" target=\"_blank\" rel=\"noopener\">What is Class Diagram? &#8211; Visual Paradigm<\/a><\/li>\n<li><a href=\"https:\/\/circle.visual-paradigm.com\/docs\/uml-and-sysml\/object-diagram\/how-to-draw-a-object-diagram-in-uml\" target=\"_blank\" rel=\"noopener\">How to Draw an Object Diagram in UML &#8211; Visual Paradigm<\/a><\/li>\n<li><a href=\"https:\/\/blog.visual-paradigm.com\/beginners-guide-to-class-diagrams\" target=\"_blank\" rel=\"noopener\">Beginner&#8217;s Guide to Class Diagrams &#8211; Visual Paradigm Blog<\/a><\/li>\n<li><a href=\"https:\/\/circle.visual-paradigm.com\/docs\/uml-and-sysml\/class-diagram\/how-to-draw-a-class-diagram-in-uml\" target=\"_blank\" rel=\"noopener\">How to Draw a Class Diagram in UML &#8211; Visual Paradigm<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>In the field of software development, particularly within object-oriented design, the Unified Modeling Language (UML) serves as a standardized framework for visualizing system architecture. At the heart of UML are the concepts of classes and objects, which play distinct yet interconnected roles in representing both data and behavior within a system. This article aims to clarify these concepts, highlighting their importance and applications in UML design. The Importance of Classes and Objects Understanding the distinction between classes and objects is crucial for several key reasons: 1. Abstraction Classes enable developers to abstract complex systems into manageable components, allowing them to focus on high-level functionality without being overwhelmed by implementation details. 2. Reusability Classes promote code efficiency by being reusable across different parts of an application or even in multiple projects, thereby reducing redundancy. 3. Encapsulation By grouping data and meth<\/p>\n","protected":false},"author":7,"featured_media":469,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"fifu_image_url":"https:\/\/cdn-images.visual-paradigm.com\/guide\/uml\/what-is-object-diagram\/03-class-diagram-to-object-diagram.png","fifu_image_alt":"","footnotes":""},"categories":[16,26],"tags":[],"class_list":["post-464","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-class-diagram","category-object-diagram"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Understanding Classes and Objects in UML - Go UML \u65e5\u672c\u8a9e<\/title>\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.go-uml.com\/ja\/understanding-classes-and-objects-in-uml\/\" \/>\n<meta property=\"og:locale\" content=\"ja_JP\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Understanding Classes and Objects in UML - Go UML \u65e5\u672c\u8a9e\" \/>\n<meta property=\"og:description\" content=\"In the field of software development, particularly within object-oriented design, the Unified Modeling Language (UML) serves as a standardized framework for visualizing system architecture. At the heart of UML are the concepts of classes and objects, which play distinct yet interconnected roles in representing both data and behavior within a system. This article aims to clarify these concepts, highlighting their importance and applications in UML design. The Importance of Classes and Objects Understanding the distinction between classes and objects is crucial for several key reasons: 1. Abstraction Classes enable developers to abstract complex systems into manageable components, allowing them to focus on high-level functionality without being overwhelmed by implementation details. 2. Reusability Classes promote code efficiency by being reusable across different parts of an application or even in multiple projects, thereby reducing redundancy. 3. Encapsulation By grouping data and meth\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.go-uml.com\/ja\/understanding-classes-and-objects-in-uml\/\" \/>\n<meta property=\"og:site_name\" content=\"Go UML \u65e5\u672c\u8a9e\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-09T09:55:48+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdn-images.visual-paradigm.com\/guide\/uml\/what-is-object-diagram\/03-class-diagram-to-object-diagram.png\" \/>\n<meta name=\"author\" content=\"curtis\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/cdn-images.visual-paradigm.com\/guide\/uml\/what-is-object-diagram\/03-class-diagram-to-object-diagram.png\" \/>\n<meta name=\"twitter:label1\" content=\"\u57f7\u7b46\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"curtis\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593\" \/>\n\t<meta name=\"twitter:data2\" content=\"5\u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.go-uml.com\/ja\/understanding-classes-and-objects-in-uml\/\",\"url\":\"https:\/\/www.go-uml.com\/ja\/understanding-classes-and-objects-in-uml\/\",\"name\":\"Understanding Classes and Objects in UML - Go UML \u65e5\u672c\u8a9e\",\"isPartOf\":{\"@id\":\"https:\/\/www.go-uml.com\/ja\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.go-uml.com\/ja\/understanding-classes-and-objects-in-uml\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.go-uml.com\/ja\/understanding-classes-and-objects-in-uml\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdn-images.visual-paradigm.com\/guide\/uml\/what-is-object-diagram\/03-class-diagram-to-object-diagram.png\",\"datePublished\":\"2024-10-09T09:55:48+00:00\",\"dateModified\":\"2024-10-09T09:55:48+00:00\",\"author\":{\"@id\":\"https:\/\/www.go-uml.com\/ja\/#\/schema\/person\/fc1da26b1e963fc50ec2722b231a274b\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.go-uml.com\/ja\/understanding-classes-and-objects-in-uml\/#breadcrumb\"},\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.go-uml.com\/ja\/understanding-classes-and-objects-in-uml\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/www.go-uml.com\/ja\/understanding-classes-and-objects-in-uml\/#primaryimage\",\"url\":\"https:\/\/cdn-images.visual-paradigm.com\/guide\/uml\/what-is-object-diagram\/03-class-diagram-to-object-diagram.png\",\"contentUrl\":\"https:\/\/cdn-images.visual-paradigm.com\/guide\/uml\/what-is-object-diagram\/03-class-diagram-to-object-diagram.png\",\"width\":\"961\",\"height\":\"319\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.go-uml.com\/ja\/understanding-classes-and-objects-in-uml\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.go-uml.com\/ja\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Understanding Classes and Objects in UML\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.go-uml.com\/ja\/#website\",\"url\":\"https:\/\/www.go-uml.com\/ja\/\",\"name\":\"Go UML \u65e5\u672c\u8a9e\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.go-uml.com\/ja\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ja\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.go-uml.com\/ja\/#\/schema\/person\/fc1da26b1e963fc50ec2722b231a274b\",\"name\":\"curtis\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/www.go-uml.com\/ja\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/48025789fc0776739935e63d9f629084?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/48025789fc0776739935e63d9f629084?s=96&d=mm&r=g\",\"caption\":\"curtis\"},\"url\":\"https:\/\/www.go-uml.com\/ja\/author\/curtis\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Understanding Classes and Objects in UML - Go UML \u65e5\u672c\u8a9e","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.go-uml.com\/ja\/understanding-classes-and-objects-in-uml\/","og_locale":"ja_JP","og_type":"article","og_title":"Understanding Classes and Objects in UML - Go UML \u65e5\u672c\u8a9e","og_description":"In the field of software development, particularly within object-oriented design, the Unified Modeling Language (UML) serves as a standardized framework for visualizing system architecture. At the heart of UML are the concepts of classes and objects, which play distinct yet interconnected roles in representing both data and behavior within a system. This article aims to clarify these concepts, highlighting their importance and applications in UML design. The Importance of Classes and Objects Understanding the distinction between classes and objects is crucial for several key reasons: 1. Abstraction Classes enable developers to abstract complex systems into manageable components, allowing them to focus on high-level functionality without being overwhelmed by implementation details. 2. Reusability Classes promote code efficiency by being reusable across different parts of an application or even in multiple projects, thereby reducing redundancy. 3. Encapsulation By grouping data and meth","og_url":"https:\/\/www.go-uml.com\/ja\/understanding-classes-and-objects-in-uml\/","og_site_name":"Go UML \u65e5\u672c\u8a9e","article_published_time":"2024-10-09T09:55:48+00:00","og_image":[{"url":"https:\/\/cdn-images.visual-paradigm.com\/guide\/uml\/what-is-object-diagram\/03-class-diagram-to-object-diagram.png","type":"","width":"","height":""}],"author":"curtis","twitter_card":"summary_large_image","twitter_image":"https:\/\/cdn-images.visual-paradigm.com\/guide\/uml\/what-is-object-diagram\/03-class-diagram-to-object-diagram.png","twitter_misc":{"\u57f7\u7b46\u8005":"curtis","\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593":"5\u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.go-uml.com\/ja\/understanding-classes-and-objects-in-uml\/","url":"https:\/\/www.go-uml.com\/ja\/understanding-classes-and-objects-in-uml\/","name":"Understanding Classes and Objects in UML - Go UML \u65e5\u672c\u8a9e","isPartOf":{"@id":"https:\/\/www.go-uml.com\/ja\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.go-uml.com\/ja\/understanding-classes-and-objects-in-uml\/#primaryimage"},"image":{"@id":"https:\/\/www.go-uml.com\/ja\/understanding-classes-and-objects-in-uml\/#primaryimage"},"thumbnailUrl":"https:\/\/cdn-images.visual-paradigm.com\/guide\/uml\/what-is-object-diagram\/03-class-diagram-to-object-diagram.png","datePublished":"2024-10-09T09:55:48+00:00","dateModified":"2024-10-09T09:55:48+00:00","author":{"@id":"https:\/\/www.go-uml.com\/ja\/#\/schema\/person\/fc1da26b1e963fc50ec2722b231a274b"},"breadcrumb":{"@id":"https:\/\/www.go-uml.com\/ja\/understanding-classes-and-objects-in-uml\/#breadcrumb"},"inLanguage":"ja","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.go-uml.com\/ja\/understanding-classes-and-objects-in-uml\/"]}]},{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/www.go-uml.com\/ja\/understanding-classes-and-objects-in-uml\/#primaryimage","url":"https:\/\/cdn-images.visual-paradigm.com\/guide\/uml\/what-is-object-diagram\/03-class-diagram-to-object-diagram.png","contentUrl":"https:\/\/cdn-images.visual-paradigm.com\/guide\/uml\/what-is-object-diagram\/03-class-diagram-to-object-diagram.png","width":"961","height":"319"},{"@type":"BreadcrumbList","@id":"https:\/\/www.go-uml.com\/ja\/understanding-classes-and-objects-in-uml\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.go-uml.com\/ja\/"},{"@type":"ListItem","position":2,"name":"Understanding Classes and Objects in UML"}]},{"@type":"WebSite","@id":"https:\/\/www.go-uml.com\/ja\/#website","url":"https:\/\/www.go-uml.com\/ja\/","name":"Go UML \u65e5\u672c\u8a9e","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.go-uml.com\/ja\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ja"},{"@type":"Person","@id":"https:\/\/www.go-uml.com\/ja\/#\/schema\/person\/fc1da26b1e963fc50ec2722b231a274b","name":"curtis","image":{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/www.go-uml.com\/ja\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/48025789fc0776739935e63d9f629084?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/48025789fc0776739935e63d9f629084?s=96&d=mm&r=g","caption":"curtis"},"url":"https:\/\/www.go-uml.com\/ja\/author\/curtis\/"}]}},"_links":{"self":[{"href":"https:\/\/www.go-uml.com\/ja\/wp-json\/wp\/v2\/posts\/464","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.go-uml.com\/ja\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.go-uml.com\/ja\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.go-uml.com\/ja\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/www.go-uml.com\/ja\/wp-json\/wp\/v2\/comments?post=464"}],"version-history":[{"count":2,"href":"https:\/\/www.go-uml.com\/ja\/wp-json\/wp\/v2\/posts\/464\/revisions"}],"predecessor-version":[{"id":471,"href":"https:\/\/www.go-uml.com\/ja\/wp-json\/wp\/v2\/posts\/464\/revisions\/471"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.go-uml.com\/ja\/wp-json\/wp\/v2\/media\/469"}],"wp:attachment":[{"href":"https:\/\/www.go-uml.com\/ja\/wp-json\/wp\/v2\/media?parent=464"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.go-uml.com\/ja\/wp-json\/wp\/v2\/categories?post=464"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.go-uml.com\/ja\/wp-json\/wp\/v2\/tags?post=464"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}