{"id":6482,"date":"2019-09-16T22:06:52","date_gmt":"2019-09-16T22:06:52","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=6482"},"modified":"2022-07-20T08:58:48","modified_gmt":"2022-07-20T15:58:48","slug":"what-is-a-java-class","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/what-is-a-java-class\/","title":{"rendered":"What Is a Java Class?"},"content":{"rendered":"\n<p>If you decide to explore the question of which programming language is the most widely-used, a common answer you&#8217;ll come across is Java. Since its introduction by James Gosling of the Oracle corporation in 1996, Java has found use in applications ranging from machine learning to web development, and everything in between.&nbsp;<br><\/p>\n\n\n\n<p>It even does pretty well <a href=\"https:\/\/careerkarma.com\/blog\/python-vs-java-jobs\/\">when compared against<\/a> another rockstar language: Python.<br><\/p>\n\n\n\n<p>For this reason, anyone aspiring to a <a href=\"https:\/\/careerkarma.com\/blog\/best-tech-jobs\/\">fantastic career in technology<\/a> would do well to <a href=\"https:\/\/careerkarma.com\/blog\/how-to-code-in-java\/\">learn the basics of Java<\/a>. An understanding of classes is an important step in this process.<br><\/p>\n\n\n\n<p>In this piece, we&#8217;re going to explore what classes are and the vital role they play in Java programming.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What Is a Class?<\/strong><\/h2>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"1000\" height=\"667\" src=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/09\/photo-1519452575417-564c1401ecc0.jpg\" alt=\"\" class=\"wp-image-6484\"\/><figcaption>You can\u2019t be a great programmer without understanding the tools provided by the language you work in.&nbsp;<br><\/figcaption><\/figure>\n\n\n\n<p>In object-oriented programming, classes can be thought of as modifiable templates which allow for the creation of an unlimited number of instances, each of which possesses the attributes and methods of the class definition.&nbsp;&nbsp;<br><\/p>\n\n\n\n<p>In order to concretize this a little bit, let&#8217;s consider an example. Say I&#8217;ve defined a class called &#8216;Car&#8217;, with an attribute &#8216;color&#8217; and a function &#8216;make_sound&#8217;. Now I can use this class definition to make instances of Car,&nbsp; which I&#8217;ll name &#8216;red_car&#8217; and &#8216;blue_car&#8217;. By default, \u2018red_car\u2019 and \u2018blue_car\u2019 have access to the attribute and function defined in the &#8216;Car&#8217; class.&nbsp;<br><\/p>\n\n\n\n<p>The advantage here should be obvious. If I need to make a large number of objects which share certain features in common, it doesn&#8217;t make any sense to define each of them individually. By instead writing a class and using it to make instances, I can save myself a lot of effort.&nbsp;&nbsp;<br><\/p>\n\n\n\n<p>But this isn&#8217;t all. Classes can inherit from one another. I could now define a &#8216;Motorcycle&#8217; class which borrows the &#8216;make_sound&#8217; method from the Car class, saving myself the necessity of building that function again.&nbsp;<br><\/p>\n\n\n\n<p>Though this is a trivial example, it does illustrate the awesome power of abstraction in programming. The best coders don&#8217;t get to where they are by writing lots and lots of pointless code. They get there by being as parsimonious as they can be with their thinking and work.&nbsp;&nbsp;<br><\/p>\n\n\n\n<p>Classes are an important part of the process of becoming a more efficient programmer.<br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>How Do Classes Work In Java?<\/strong><\/h2>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"1000\" height=\"664\" src=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/09\/photo-1432888498266-38ffec3eaf0a.jpg\" alt=\"\" class=\"wp-image-6485\"\/><figcaption>Make sure your code is working as hard as you do.&nbsp;<br><\/figcaption><\/figure>\n\n\n\n<p>All of the comments made so far about classes apply to classes in Java as well. There are a handful of features which you&#8217;ll see in almost all Java class definitions:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Modifiers: Java allows for the creation of a couple of different kinds of classes, each of which requires a special keyword to precede the class name. In order to make a private, protected, or public class we must add the appropriate word to the class definition, like so:&nbsp;<ul><li>public class Test<\/li><li>private class Test<\/li><li>protected class Test<\/li><li>If no modifier is provided, Java creates a default class.&nbsp;<\/li><\/ul><\/li><li>Class name: Of course every class has to have a name, and by convention these are always capitalized.<\/li><li>Body: This contains the actual code implementing the class.<\/li><\/ul>\n\n\n\n<p>In all the object-oriented programming languages I\u2019ve seen, a class definition is only the crucial first step in actually using a class. The next step is to <em>instantiate<\/em> the class, which means creating an object based on the class template. In Java this tends to look like:<br><\/p>\n\n\n\n<p>MyClass x = new MyClass(&#8220;argument_1&#8243;,&#8221;argument_2&#8221;);<br><\/p>\n\n\n\n<p>The variable \u2018x\u2019 now has whatever properties, methods, and attributes we gave \u2018MyClass\u2019 in its definition. We call \u2018x\u2019 an <em>instance<\/em> of \u2018MyClass\u2019.&nbsp;<br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Learning More About Classes In Java&nbsp;<\/strong><\/h2>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"1000\" height=\"664\" src=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/09\/photo-1472068996216-8c972a0af9bd.jpg\" alt=\"\" class=\"wp-image-6486\"\/><figcaption> Nothing is more liberating than learning skills that make you more effective.&nbsp;<br><\/figcaption><\/figure>\n\n\n\n<p>No doubt by now you&#8217;re burning with the desire to learn more about classes in Java. To that end, here are some fantastic tutorials to take your knowledge to the next level:<br><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"https:\/\/www.geeksforgeeks.org\/classes-objects-java\/\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">Geeks for Geeks<\/a> also has good tutorials, featuring simple explanations and lots of code snippets.&nbsp;<\/li><li>It\u2019s hard to go wrong consulting the <a href=\"https:\/\/docs.oracle.com\/javase\/tutorial\/java\/javaOO\/classes.html\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">official documentation<\/a> for a language. It can take a while to be able to read the docs fluently, so don\u2019t feel bad if these don\u2019t help you a whole lot as a beginner.&nbsp;<\/li><li>For visual learners, try this <a href=\"https:\/\/www.youtube.com\/watch?v=cXj1hHdMNk4\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">edureka video<\/a> on Java classes, complete with diagrams and pithy explanations.&nbsp;<\/li><\/ul>\n\n\n\n<p>Classes are an ideal way to extend your range as a programmer and become more valuable. Hopefully this article has made them a little more accessible.\u00a0<\/p>\n","protected":false},"excerpt":{"rendered":"If you decide to explore the question of which programming language is the most widely-used, a common answer you'll come across is Java. Since its introduction by James Gosling of the Oracle corporation in 1996, Java has found use in applications ranging from machine learning to web development, and everything in between.&nbsp; It even does&hellip;","protected":false},"author":35,"featured_media":6483,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17289],"tags":[9237],"class_list":{"0":"post-6482","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-java","8":"tag-java"},"acf":{"post_sub_title":"","sprint_id":"","query_class":"What is a {technical term}","school_sft":"","parent_sft":"","school_privacy_policy":"","has_review":null,"is_sponser_post":[],"is_guest_post":[]},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.0 (Yoast SEO v27.0) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>What Is a Java Class? | Career Karma<\/title>\n<meta name=\"description\" content=\"Click here to learn more about how classes work in Java.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/careerkarma.com\/blog\/what-is-a-java-class\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What Is a Java Class?\" \/>\n<meta property=\"og:description\" content=\"Click here to learn more about how classes work in Java.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/what-is-a-java-class\/\" \/>\n<meta property=\"og:site_name\" content=\"Career Karma\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/facebook.com\/careerkarmaapp\" \/>\n<meta property=\"article:published_time\" content=\"2019-09-16T22:06:52+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-07-20T15:58:48+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/09\/photo-1513258496099-48168024aec0-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"667\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Trent Fowler\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@career_karma\" \/>\n<meta name=\"twitter:site\" content=\"@career_karma\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Trent Fowler\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/careerkarma.com\/blog\/what-is-a-java-class\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/what-is-a-java-class\/\"},\"author\":{\"name\":\"Trent Fowler\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/768fb9a38d2c1b146588954736f79aba\"},\"headline\":\"What Is a Java Class?\",\"datePublished\":\"2019-09-16T22:06:52+00:00\",\"dateModified\":\"2022-07-20T15:58:48+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/what-is-a-java-class\/\"},\"wordCount\":791,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/what-is-a-java-class\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/09\/photo-1513258496099-48168024aec0-1.jpg\",\"keywords\":[\"java\"],\"articleSection\":[\"Java\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/what-is-a-java-class\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/what-is-a-java-class\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/what-is-a-java-class\/\",\"name\":\"What Is a Java Class? | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/what-is-a-java-class\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/what-is-a-java-class\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/09\/photo-1513258496099-48168024aec0-1.jpg\",\"datePublished\":\"2019-09-16T22:06:52+00:00\",\"dateModified\":\"2022-07-20T15:58:48+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/768fb9a38d2c1b146588954736f79aba\"},\"description\":\"Click here to learn more about how classes work in Java.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/what-is-a-java-class\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/what-is-a-java-class\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/what-is-a-java-class\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/09\/photo-1513258496099-48168024aec0-1.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/09\/photo-1513258496099-48168024aec0-1.jpg\",\"width\":1000,\"height\":667},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/what-is-a-java-class\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\/\/careerkarma.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Java\",\"item\":\"https:\/\/careerkarma.com\/blog\/java\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"What Is a Java Class?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\",\"url\":\"https:\/\/careerkarma.com\/blog\/\",\"name\":\"Career Karma\",\"description\":\"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/careerkarma.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/768fb9a38d2c1b146588954736f79aba\",\"name\":\"Trent Fowler\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/11\/Screen-Shot-2019-11-16-at-3.07.12-PM.png\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/11\/Screen-Shot-2019-11-16-at-3.07.12-PM.png\",\"caption\":\"Trent Fowler\"},\"description\":\"Trent Fowler is a data scientist and writer with an interest in machine learning, blockchain technologies, and futurism.\",\"url\":\"https:\/\/careerkarma.com\/blog\/author\/trent-fowler\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"What Is a Java Class? | Career Karma","description":"Click here to learn more about how classes work in Java.","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:\/\/careerkarma.com\/blog\/what-is-a-java-class\/","og_locale":"en_US","og_type":"article","og_title":"What Is a Java Class?","og_description":"Click here to learn more about how classes work in Java.","og_url":"https:\/\/careerkarma.com\/blog\/what-is-a-java-class\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2019-09-16T22:06:52+00:00","article_modified_time":"2022-07-20T15:58:48+00:00","og_image":[{"width":1000,"height":667,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/09\/photo-1513258496099-48168024aec0-1.jpg","type":"image\/jpeg"}],"author":"Trent Fowler","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"Trent Fowler","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/what-is-a-java-class\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/what-is-a-java-class\/"},"author":{"name":"Trent Fowler","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/768fb9a38d2c1b146588954736f79aba"},"headline":"What Is a Java Class?","datePublished":"2019-09-16T22:06:52+00:00","dateModified":"2022-07-20T15:58:48+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/what-is-a-java-class\/"},"wordCount":791,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/what-is-a-java-class\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/09\/photo-1513258496099-48168024aec0-1.jpg","keywords":["java"],"articleSection":["Java"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/what-is-a-java-class\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/what-is-a-java-class\/","url":"https:\/\/careerkarma.com\/blog\/what-is-a-java-class\/","name":"What Is a Java Class? | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/what-is-a-java-class\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/what-is-a-java-class\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/09\/photo-1513258496099-48168024aec0-1.jpg","datePublished":"2019-09-16T22:06:52+00:00","dateModified":"2022-07-20T15:58:48+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/768fb9a38d2c1b146588954736f79aba"},"description":"Click here to learn more about how classes work in Java.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/what-is-a-java-class\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/what-is-a-java-class\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/what-is-a-java-class\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/09\/photo-1513258496099-48168024aec0-1.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/09\/photo-1513258496099-48168024aec0-1.jpg","width":1000,"height":667},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/what-is-a-java-class\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/careerkarma.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Java","item":"https:\/\/careerkarma.com\/blog\/java\/"},{"@type":"ListItem","position":3,"name":"What Is a Java Class?"}]},{"@type":"WebSite","@id":"https:\/\/careerkarma.com\/blog\/#website","url":"https:\/\/careerkarma.com\/blog\/","name":"Career Karma","description":"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/careerkarma.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/768fb9a38d2c1b146588954736f79aba","name":"Trent Fowler","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/11\/Screen-Shot-2019-11-16-at-3.07.12-PM.png","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/11\/Screen-Shot-2019-11-16-at-3.07.12-PM.png","caption":"Trent Fowler"},"description":"Trent Fowler is a data scientist and writer with an interest in machine learning, blockchain technologies, and futurism.","url":"https:\/\/careerkarma.com\/blog\/author\/trent-fowler\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/6482","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/users\/35"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=6482"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/6482\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/6483"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=6482"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=6482"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=6482"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}