{"id":326900,"date":"2023-09-05T06:33:16","date_gmt":"2023-09-05T06:33:16","guid":{"rendered":"https:\/\/www.baeldung.com\/?p=165249"},"modified":"2023-09-05T06:33:16","modified_gmt":"2023-09-05T06:33:16","slug":"what-does-mean-in-java","status":"publish","type":"post","link":"https:\/\/itteacheritfreelance.hk\/wordpress\/index.php\/2023\/09\/05\/what-does-mean-in-java\/","title":{"rendered":"What Does \u201c\u2013\u2013&gt;\u201d Mean in Java?"},"content":{"rendered":"<p class=\"syndicated-attribution\"><meta name= \\\"keywords \\\" content= \\\"\u96fb\u5b50\u8a08\u7b97\u6a5f, \u6559\u80b2, IT \u96fb\u8166\u73ed,\u96fb\u8166\u88dc\u7fd2\uff0c \u96fb\u8166\u73ed\uff0c \u5bb6\u6559\uff0c \u79c1\u4eba\u8001\u5e2b\uff0c \u8cc7\u8a0a\u6280\u8853\uff0c \u7a0b\u5e8f\u8a2d\u8a08\uff0c \u96fb\u5b50\u8a08\u7b97\u6a5f\uff0c \u904a\u6232\uff0c \u860b\u679c\uff0c \u96fb\u5f71\uff0c \u8a08\u7b97\u6a5f\uff0c\u7de8\u78bc\uff0c Java\uff0c C\/C++\uff0c JavaScript\uff0c PHP\uff0c HTML\uff0c CSS\uff0c MySQL\uff0c mobile\uff0c Android\uff0c \u52d5\u6f2b\uff0c Python\uff0c teacher\uff0c \u88dc\u7fd2\uff0c \u96fb\u8166\u88dc\u7fd2 \u8cc7\u8a0a, \u7535\u5b50\u8ba1\u7b97\u673a, IT ,Game, apple, movie, Computer,student,Java,\u6559\u80b2, ,\u5b66\u751f, \u5b66\u4e60, learn, \u6559\u5b66,  Android, apple,anime, animation, \u4fe1\u606f\u6280\u672f, \u7a0b\u5e8f\u8bbe\u8ba1, \u79fb\u52a8\u7535\u8bdd, \u8cc7\u8a0a\u79d1\u6280,Game, Jeu, Juego,Call Of Duty ,\u4f7f\u547d\u53ec\u559a , \u6e38\u620f, \u7535\u5b50\u6e38\u620f,, \u591a\u4eba\u7535\u5b50\u6e38\u620f, \u7f51\u7edc\u6e38\u620f\uff0conline\uff0conline game, \u624b\u673a\u6e38\u620f, mobile \\\"><\/p>\n<p><img src=\"https:\/\/www.baeldung.com\/wp-content\/uploads\/2021\/09\/Java-7-Featured-1024x536.png\" class=\"webfeedsFeaturedVisual wp-post-image\" alt=\"\" decoding=\"async\" loading=\"lazy\" style=\"float: left; margin-right: 5px;\" srcset=\"https:\/\/www.baeldung.com\/wp-content\/uploads\/2021\/09\/Java-7-Featured-1024x536.png 1024w, https:\/\/www.baeldung.com\/wp-content\/uploads\/2021\/09\/Java-7-Featured-300x157.png 300w, https:\/\/www.baeldung.com\/wp-content\/uploads\/2021\/09\/Java-7-Featured-768x402.png 768w, https:\/\/www.baeldung.com\/wp-content\/uploads\/2021\/09\/Java-7-Featured-100x52.png 100w, https:\/\/www.baeldung.com\/wp-content\/uploads\/2021\/09\/Java-7-Featured.png 1200w\" sizes=\"(max-width: 580px) 100vw, 580px\" \/><\/p>\n<h2 id=\"bd-overview\" data-id=\"overview\">1. Overview<\/h2>\n<div class=\"bd-anchor\" id=\"overview\"><\/div>\n<p>When we read others&#8217; code, sometimes we can see some interesting and novel approaches that we&#8217;ve never seen before. Knowing what those tricks do can significantly enhance our comprehension of the codebase and encourage us to explore our viewpoints on Java programming.<\/p>\n<p>In this tutorial, we&#8217;ll discuss an interesting usage in Java: <code>--&gt;<\/code><\/p>\n<h2 id=\"bd-introduction-to-the-problem\" data-id=\"introduction-to-the-problem\">2. Introduction to the Problem<\/h2>\n<div class=\"bd-anchor\" id=\"introduction-to-the-problem\"><\/div>\n<p>As usual, let&#8217;s start with an example:<\/p>\n<pre><code class=\"language-java\">int i = 6;\r\nwhile ( i--&gt;0 ) { \r\n    \/\/ some processing in loop \r\n}<\/code><\/pre>\n<p>At first glance, this code is pretty straightforward. A <a href=\"https:\/\/feeds.feedblitz.com\/~\/t\/0\/0\/baeldung\/~https:\/\/www.baeldung.com\/java-while-loop\"><em>while<\/em><\/a> loop executes some logic repeatedly.<\/p>\n<p>However, if we take a closer look at the\u00a0<em>while<\/em> statement, what does the expression <code>i--&gt;0<\/code> do? We may haven&#8217;t seen the usage of the <code>--&gt;<\/code> operator before. If we search in the Java documentation, the closest operator we can find is the &#8216;-&gt;&#8217; operator used in <a href=\"https:\/\/feeds.feedblitz.com\/~\/t\/0\/0\/baeldung\/~https:\/\/www.baeldung.com\/kotlin\/lambda-expressions\">lambda expressions<\/a>. But apparently, the code in the example has nothing to do with lambda expression.<\/p>\n<p>So next, let&#8217;s first figure out what <code>--&gt;<\/code> does. Then, we&#8217;ll have a short quiz for other similar tricks.<\/p>\n<p>For simplicity, we&#8217;ll use unit test assertions to present variable values instead of printing them out in this tutorial.<\/p>\n<h2 id=\"bd-understanding---gt\" data-id=\"understanding---gt\">3. Understanding <em>&#8216;<code>--&gt;<\/code>&#8216;<\/em><\/h2>\n<div class=\"bd-anchor\" id=\"understanding---gt\"><\/div>\n<p>First of all, <strong>&#8220;<code>--&gt;<\/code>&#8221; in <code>( i--&gt;0 )<\/code> isn&#8217;t a Java operator.<\/strong> Actually, <strong><code>(i--&gt;0)<\/code> is the same as <code>(i-- &gt;0)<\/code> or the more clear format: <code>((i--) &gt; 0)<\/code><\/strong>.<\/p>\n<p>Therefore, it performs two operations: <strong><a href=\"https:\/\/feeds.feedblitz.com\/~\/t\/0\/0\/baeldung\/~https:\/\/www.baeldung.com\/java-unary-operators\">post-decrementing<\/a> <em>i<\/em> and the &#8220;greater than <em>0<\/em>&#8221; check<\/strong>.<\/p>\n<p>When we initialize the variable <em>i<\/em> with the value <em>6<\/em>, it yields a sequence of numbers within the loop: 5, 4, 3, 2, 1, and 0. Following this sequence,\u00a0<em>i<\/em> transitions to -1, causing the loop to terminate:<\/p>\n<pre><code class=\"language-java\">List&lt;Integer&gt; resultWhile = new ArrayList&lt;&gt;();\r\nint i = 6;\r\nwhile (i-- &gt; 0) {\r\n    resultWhile.add(i);\r\n}\r\nassertEquals(Lists.newArrayList(5, 4, 3, 2, 1, 0), resultWhile);<\/code><\/pre>\n<p>Similarly, we can use the same trick in a <em><a href=\"https:\/\/feeds.feedblitz.com\/~\/t\/0\/0\/baeldung\/~https:\/\/www.baeldung.com\/java-for-loop\">for-loop<\/a>:<\/em><\/p>\n<pre><code class=\"language-java\">List&lt;Integer&gt; resultFor = new ArrayList&lt;&gt;();\r\nfor (int j = 6; j-- &gt; 0; ) {\r\n    resultFor.add(j);\r\n}\r\nassertEquals(Lists.newArrayList(5, 4, 3, 2, 1, 0), resultFor);<\/code><\/pre>\n<p>&nbsp;<\/p>\n<p>Now that we have a clear understanding of what <code>--&gt;<\/code> does. Let&#8217;s explore and experiment with some similar tricks in the upcoming quiz section.<\/p>\n<h2 id=\"bd-quiz-time\" data-id=\"quiz-time\">4. Quiz Time!<\/h2>\n<div class=\"bd-anchor\" id=\"quiz-time\"><\/div>\n<p>The quiz has four challenges.<\/p>\n<p>Let&#8217;s say we have an integer list:<\/p>\n<pre><code class=\"language-java\">List&lt;Integer&gt; result = new ArrayList&lt;&gt;();<\/code><\/pre>\n<p>With each challenge, the integer list is reset, followed by the gradual insertion of numbers within a <em>while<\/em> loop. Our objective is to <strong>determine the numbers in the list after the loop execution<\/strong>.<\/p>\n<p>The first challenge is about understanding <code>++&lt;<\/code>.<\/p>\n<h3 id=\"bd-1-understanding-lt\" data-id=\"1-understanding-lt\">4.1. Understanding <em>&#8216;<code>++&lt;<\/code>&#8216;<\/em><\/h3>\n<div class=\"bd-anchor\" id=\"1-understanding-lt\"><\/div>\n<pre><code class=\"language-java\">int i = -1;\r\nwhile (i++&lt;5) {\r\n    result.add(i);\r\n}<\/code><\/pre>\n<p>Similar to <code>--&gt;<\/code>,<strong> &#8216;<em>i++&lt;5<\/em> &#8216; post-increments <em>i<\/em>\u00a0and then compares <em>i<\/em> to 5<\/strong>. As <em>i<\/em>&#8216;s initial value is <em>-1<\/em>, we&#8217;ll have <em>0<\/em> to <em>5<\/em> in the result:<\/p>\n<pre><code class=\"language-java\">assertEquals(Lists.newArrayList(0, 1, 2, 3, 4, 5), result);<\/code><\/pre>\n<p>Next, let&#8217;s interpret another expression <code>&lt;--<\/code>.<\/p>\n<h3 id=\"bd-2-understanding-lt--\" data-id=\"2-understanding-lt--\">4.2. Understanding <em>&#8216;<code>&lt;--<\/code>&#8216;<\/em><\/h3>\n<div class=\"bd-anchor\" id=\"2-understanding-lt--\"><\/div>\n<pre><code class=\"language-java\">result.clear();\r\nint j = 10;\r\nwhile (0&lt;--j) {\r\n    result.add(j);\r\n}<\/code><\/pre>\n<p>This time, as the code above shows, <strong>the post-decrement operation is changed to pre-decrement<\/strong>. Therefore, the loop fills <em>9<\/em> to <em>1<\/em> to the list:<\/p>\n<pre><code class=\"language-java\">assertEquals(Lists.newArrayList(9, 8, 7, 6, 5, 4, 3, 2, 1), result);<\/code><\/pre>\n<p>Then, let&#8217;s look at a similar expression <code>&gt;++<\/code>.<\/p>\n<h3 id=\"bd-3-understanding-gt\" data-id=\"3-understanding-gt\">4.3. Understanding\u00a0 <em>&#8216;<code>&gt;++<\/code>&#8216;<\/em><\/h3>\n<div class=\"bd-anchor\" id=\"3-understanding-gt\"><\/div>\n<pre><code class=\"language-java\">result.clear();\r\nint n = 0;\r\nwhile (6&gt;++n) {\r\n    result.add(n);\r\n}<\/code><\/pre>\n<p>As we can see in the code snippet, <strong><em>&#8216;6&gt;++n&#8217;<\/em>\u00a0pre-increments <em>i<\/em> and then compares to <em>6<\/em><\/strong> in each loop step. Thus, we&#8217;ll have <em>1<\/em> to <em>5<\/em> as a result:<\/p>\n<pre><code class=\"language-java\">assertEquals(Lists.newArrayList(1, 2, 3, 4, 5), result);<\/code><\/pre>\n<p>Finally, let&#8217;s see a challenge that looks a bit different.<\/p>\n<h3 id=\"bd-4-understanding-gtgtgt\" data-id=\"4-understanding-gtgtgt\">4.4. Understanding <em>&#8216;<code>&gt;&gt;&gt;=<\/code>&#8216;<\/em><\/h3>\n<div class=\"bd-anchor\" id=\"4-understanding-gtgtgt\"><\/div>\n<pre><code class=\"language-java\">result.clear();\r\nint x = 32;\r\nwhile ((x&gt;&gt;&gt;=1)&gt;1) {\r\n    result.add(x);\r\n}<\/code><\/pre>\n<p>This challenge is different from others. <em>x&gt;&gt;&gt;=1<\/em> has nothing to do with pre-\/post-increment or pre-\/post-decrement. <strong><em>&gt;&gt;&gt;<\/em> is the <a href=\"https:\/\/feeds.feedblitz.com\/~\/t\/0\/0\/baeldung\/~https:\/\/www.baeldung.com\/java-bitwise-operators#3unsigned-right-shift-gtgtgt\">unsigned right-shift<\/a> operator<\/strong>.<\/p>\n<p>Therefore, <em><code>x&gt;&gt;&gt;1<\/code><\/em> right-shifts one place, and the result is the same as x\/2. Further, <strong><code>x &gt;&gt;&gt;=1<\/code> performs the shift operation and reassigns the result to the variable <em>x<\/em>.<\/strong> Thus, given <em>x=32,<\/em> the result list contains <em>16<\/em>, <em>8<\/em>, <em>4<\/em>, and <em>2<\/em>:<\/p>\n<pre><code class=\"language-java\">assertEquals(Lists.newArrayList(16, 8, 4, 2), result);<\/code><\/pre>\n<p>So far, we&#8217;ve gone through the challenges and understood what &#8216;<em><code>--&gt;<\/code><\/em>&#8216; and similar tricks do.<\/p>\n<h2 id=\"bd-conclusion\" data-id=\"conclusion\">5. Conclusion<\/h2>\n<div class=\"bd-anchor\" id=\"conclusion\"><\/div>\n<p>In this article, we discussed what <code>--&gt;<\/code>\u00a0does in Java. Additionally, we engaged in a quiz, exploring a few similar tricks.<\/p>\n<p>It&#8217;s worth noting that when using these formats, <strong>it&#8217;s advisable to insert a space or braces between the two operators. This practice enhances code readability<\/strong>. For instance, it&#8217;s preferable to write <code>i-- &gt; 0<\/code>\u00a0or <code>(i--) &gt; 0<\/code>\u00a0instead of <code>i--&gt;0.<\/code><\/p>\n<p>As always, the complete source code for the examples is available <a href=\"https:\/\/feeds.feedblitz.com\/~\/t\/0\/0\/baeldung\/~https:\/\/github.com\/eugenp\/tutorials\/tree\/master\/core-java-modules\/core-java-lang-operators-2\">over on GitHub<\/a>.<\/p>\n<p><Img align=\"left\" border=\"0\" height=\"1\" width=\"1\" alt=\"\" style=\"border:0;float:left;margin:0;padding:0;width:1px!important;height:1px!important;\" hspace=\"0\" src=\"https:\/\/feeds.feedblitz.com\/~\/i\/792281306\/0\/baeldung\"><\/p>\n<div style=\"clear:both;padding-top:0.2em;\"><a title=\"Like on Facebook\" href=\"https:\/\/feeds.feedblitz.com\/_\/28\/792281306\/baeldung\"><img decoding=\"async\" height=\"20\" src=\"https:\/\/assets.feedblitz.com\/i\/fblike20.png\" style=\"border:0;margin:0;padding:0;\"><\/a>&#160;<a title=\"Pin it!\" href=\"https:\/\/feeds.feedblitz.com\/_\/29\/792281306\/baeldung,https%3A%2F%2Fwww.baeldung.com%2Fwp-content%2Fuploads%2F2021%2F09%2FJava-7-Featured-1024x536.png\"><img decoding=\"async\" height=\"20\" src=\"https:\/\/assets.feedblitz.com\/i\/pinterest20.png\" style=\"border:0;margin:0;padding:0;\"><\/a>&#160;<a title=\"Tweet This\" href=\"https:\/\/feeds.feedblitz.com\/_\/24\/792281306\/baeldung\"><img decoding=\"async\" height=\"20\" src=\"https:\/\/assets.feedblitz.com\/i\/twitter20.png\" style=\"border:0;margin:0;padding:0;\"><\/a>&#160;<a title=\"Subscribe by email\" href=\"https:\/\/feeds.feedblitz.com\/_\/19\/792281306\/baeldung\"><img decoding=\"async\" height=\"20\" src=\"https:\/\/assets.feedblitz.com\/i\/email20.png\" style=\"border:0;margin:0;padding:0;\"><\/a>&#160;<a title=\"Subscribe by RSS\" href=\"https:\/\/feeds.feedblitz.com\/_\/20\/792281306\/baeldung\"><img decoding=\"async\" height=\"20\" src=\"https:\/\/assets.feedblitz.com\/i\/rss20.png\" style=\"border:0;margin:0;padding:0;\"><\/a>&#160;<a rel=\"NOFOLLOW\" title=\"View Comments\" href=\"https:\/\/www.baeldung.com\/java-minus-minus-greaterthan#comments\"><img decoding=\"async\" height=\"20\" style=\"border:0;margin:0;padding:0;\" src=\"https:\/\/assets.feedblitz.com\/i\/comments20.png\"><\/a>&#160;<a title=\"Follow Comments via RSS\" href=\"https:\/\/www.baeldung.com\/java-minus-minus-greaterthan\/feed\"><img decoding=\"async\" height=\"20\" style=\"border:0;margin:0;padding:0;\" src=\"https:\/\/assets.feedblitz.com\/i\/commentsrss20.png\"><\/a>&nbsp;<\/p>\n<div style=\"clear:left;\"><a rel=\"NOFOLLOW\" href=\"https:\/\/www.baeldung.com\/java-minus-minus-greaterthan#comments\"><\/p>\n<h3>Comments<\/h3>\n<p><\/a><\/p>\n<ul>\n<li><a rel=\"NOFOLLOW\" href=\"https:\/\/www.baeldung.com\/java-minus-minus-greaterthan#comment-14902\">In reply to Wiktor Wandachowicz.   Hi Wiktor,   Yes, it&#8217;s just &#8230;<\/a> <i>by Loredana Crusoveanu<\/i>\n<li><a rel=\"NOFOLLOW\" href=\"https:\/\/www.baeldung.com\/java-minus-minus-greaterthan#comment-14901\">Yay, an example of \u201cCLEVER CODE\u201d detected! For a joke this &#8230;<\/a> <i>by Wiktor Wandachowicz<\/i><\/ul>\n<\/div>\n<p>&#160;<\/p><\/div>\n\n<p class=\"syndicated-attribution\"><figure class= \\\"wp-block-image alignnone \\\"><img src= \\\"http:\/\/itteacheritfreelance.hk\/test\/wordpress\/wp-content\/uploads\/2016\/05\/logo2-2.png\\\" alt=\\\"IT\u96fb\u8166\u88dc\u7fd2 java\u88dc\u7fd2 \u70ba\u5927\u5bb6\u914d\u5c0d\u96fb\u8166\u88dc\u7fd2,IT freelance, \u79c1\u4eba\u8001\u5e2b, PHP\u88dc\u7fd2,CSS\u88dc\u7fd2,XML,Java\u88dc\u7fd2,MySQL\u88dc\u7fd2,graphic design\u88dc\u7fd2,\u4e2d\u5c0f\u5b78ICT\u88dc\u7fd2,\u4e00\u5c0d\u4e00\u79c1\u4eba\u88dc\u7fd2\u548cFreelance\u81ea\u7531\u5de5\u4f5c\u914d\u5c0d\u3002\\\"\/><figcaption>\u7acb\u523b\u8a3b\u518a\u53ca\u5831\u540d\u96fb\u8166\u88dc\u7fd2\u8ab2\u7a0b\u5427!<\/figcaption><\/figure>\r\n<\/br>Find A Teacher Form:\r\n<\/br>https:\/\/docs.google.com\/forms\/d\/1vREBnX5n262umf4wU5U2pyTwvk9O-JrAgblA-wH9GFQ\/viewform?edit_requested=true#responses\r\n<\/br><\/br>Email:\r\n<\/br>public1989two@gmail.com<br><br><br><br><br><br><br>\r\n<a href=www.itsec.hk style=color:#FFFFFF;>www.itsec.hk<\/a><br>\r\n<a href=\\\"www.itsec.vip\\\" style=color:#FFFFFF;>www.itsec.vip<\/a><br>\r\n<a href=\\\"www.itseceu.uk\\\" style=color:#FFFFFF;>www.itseceu.uk<\/a><br><\/p>","protected":false},"excerpt":{"rendered":"<div class=\"mh-excerpt\"><p><img decoding=\"async\" src=\"https:\/\/www.baeldung.com\/wp-content\/uploads\/2021\/09\/Java-7-Featured-1024x536.png\" class=\"webfeedsFeaturedVisual wp-post-image\" alt=\"\" loading=\"lazy\"><\/p>\n<p>Discuss interesting usages of &#8211;&gt; in Java.<\/p>\n<div><a title=\"Like on Facebook\" href=\"https:\/\/feeds.feedblitz.com\/_\/28\/792281306\/baeldung\"><img decoding=\"async\" height=\"20\" src=\"https:\/\/assets.feedblitz.com\/i\/fblike20.png\"><\/a>\u00a0<a title=\"Pin it!\" href=\"https:\/\/feeds.feedblitz.com\/_\/29\/792281306\/baeldung,https%3A%2F%2Fwww.baeldung.com%2Fwp-content%2Fuploads%2F2021%2F09%2FJava-7-Featured-1024x536.png\"><img decoding=\"async\" height=\"20\" src=\"https:\/\/assets.feedblitz.com\/i\/pinterest20.png\"><\/a>\u00a0<a title=\"Tweet This\" href=\"https:\/\/feeds.feedblitz.com\/_\/24\/792281306\/baeldung\"><img decoding=\"async\" height=\"20\" src=\"https:\/\/assets.feedblitz.com\/i\/twitter20.png\"><\/a>\u00a0<a title=\"Subscribe by email\" href=\"https:\/\/feeds.feedblitz.com\/_\/19\/792281306\/baeldung\"><img decoding=\"async\" height=\"20\" src=\"https:\/\/assets.feedblitz.com\/i\/email20.png\"><\/a>\u00a0<a title=\"Subscribe by RSS\" href=\"https:\/\/feeds.feedblitz.com\/_\/20\/792281306\/baeldung\"><img decoding=\"async\" height=\"20\" src=\"https:\/\/assets.feedblitz.com\/i\/rss20.png\"><\/a>\u00a0<a rel=\"NOFOLLOW\" title=\"View Comments\" href=\"https:\/\/www.baeldung.com\/java-minus-minus-greaterthan#comments\"><img decoding=\"async\" height=\"20\" src=\"https:\/\/assets.feedblitz.com\/i\/comments20.png\"><\/a>\u00a0<a title=\"Follow Comments via RSS\" href=\"https:\/\/www.baeldung.com\/java-minus-minus-greaterthan\/feed\"><img decoding=\"async\" height=\"20\" src=\"https:\/\/assets.feedblitz.com\/i\/commentsrss20.png\"><\/a>\u00a0<\/p>\n<div><a rel=\"NOFOLLOW\" href=\"https:\/\/www.baeldung.com\/java-minus-minus-greaterthan#comments\"><\/p>\n<h3>Comments<\/h3>\n<p><\/a><\/p>\n<ul>\n<li><a rel=\"NOFOLLOW\" href=\"https:\/\/www.baeldung.com\/java-minus-minus-greaterthan#comment-14902\">In reply to Wiktor Wandachowicz.   Hi Wiktor,   Yes, it&#8217;s just &#8230;<\/a> <i>by Loredana Crusoveanu<\/i><\/li>\n<li><a rel=\"NOFOLLOW\" href=\"https:\/\/www.baeldung.com\/java-minus-minus-greaterthan#comment-14901\">Yay, an example of \u201cCLEVER CODE\u201d detected! For a joke this &#8230;<\/a> <i>by Wiktor Wandachowicz<\/i><\/li>\n<\/ul>\n<\/div>\n<p>\u00a0<\/p><\/div>\n<\/div>","protected":false},"author":915,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"slim_seo":{"title":"What Does \u201c\u2013\u2013&gt;\u201d Mean in Java? - ITTeacherITFreelance.hk","description":"Discuss interesting usages of --&gt; in Java. \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 Comments In reply to Wiktor Wandachowicz. Hi Wiktor, Yes, it's just ... by Loredana Crusoveanu Yay,"},"footnotes":""},"categories":[6,1307],"tags":[],"_links":{"self":[{"href":"https:\/\/itteacheritfreelance.hk\/wordpress\/index.php\/wp-json\/wp\/v2\/posts\/326900"}],"collection":[{"href":"https:\/\/itteacheritfreelance.hk\/wordpress\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/itteacheritfreelance.hk\/wordpress\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/itteacheritfreelance.hk\/wordpress\/index.php\/wp-json\/wp\/v2\/users\/915"}],"replies":[{"embeddable":true,"href":"https:\/\/itteacheritfreelance.hk\/wordpress\/index.php\/wp-json\/wp\/v2\/comments?post=326900"}],"version-history":[{"count":1,"href":"https:\/\/itteacheritfreelance.hk\/wordpress\/index.php\/wp-json\/wp\/v2\/posts\/326900\/revisions"}],"predecessor-version":[{"id":326901,"href":"https:\/\/itteacheritfreelance.hk\/wordpress\/index.php\/wp-json\/wp\/v2\/posts\/326900\/revisions\/326901"}],"wp:attachment":[{"href":"https:\/\/itteacheritfreelance.hk\/wordpress\/index.php\/wp-json\/wp\/v2\/media?parent=326900"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/itteacheritfreelance.hk\/wordpress\/index.php\/wp-json\/wp\/v2\/categories?post=326900"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/itteacheritfreelance.hk\/wordpress\/index.php\/wp-json\/wp\/v2\/tags?post=326900"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}