{"id":7236,"date":"2023-10-02T21:41:29","date_gmt":"2023-10-02T20:41:29","guid":{"rendered":"https:\/\/www.baeldung.com\/java-skip-first-iteration"},"modified":"2023-10-02T21:41:29","modified_gmt":"2023-10-02T20:41:29","slug":"skipping-the-first-iteration-in-java","status":"publish","type":"post","link":"https:\/\/gamefootballmobileanimeiphone.com\/index.php\/2023\/10\/02\/skipping-the-first-iteration-in-java\/","title":{"rendered":"Skipping the First Iteration in Java"},"content":{"rendered":"<p><img src=\"https:\/\/www.baeldung.com\/wp-content\/uploads\/2021\/09\/Java-8-Featured-1024x536.png\" class=\"webfeedsFeaturedVisual wp-post-image\" alt=\"\" decoding=\"async\" style=\"float: left; margin-right: 5px;\" loading=\"lazy\" srcset=\"https:\/\/www.baeldung.com\/wp-content\/uploads\/2021\/09\/Java-8-Featured-1024x536.png 1024w, https:\/\/www.baeldung.com\/wp-content\/uploads\/2021\/09\/Java-8-Featured-300x157.png 300w, https:\/\/www.baeldung.com\/wp-content\/uploads\/2021\/09\/Java-8-Featured-768x402.png 768w, https:\/\/www.baeldung.com\/wp-content\/uploads\/2021\/09\/Java-8-Featured-100x52.png 100w, https:\/\/www.baeldung.com\/wp-content\/uploads\/2021\/09\/Java-8-Featured.png 1200w\" sizes=\"(max-width: 580px) 100vw, 580px\" \/><\/p>\n<h2 id=\"bd-introduction\" data-id=\"introduction\">1. Introduction<\/h2>\n<div class=\"bd-anchor\" id=\"introduction\"><\/div>\n<p>Iterating is a cornerstone of programming, enabling developers to traverse and easily manipulate data structures. <strong>However, there are situations where we may need to iterate over these collections while skipping the first element. <\/strong>In this tutorial, we&#8217;ll explore various methods to skip the first element using loops and the <a href=\"https:\/\/feeds.feedblitz.com\/~\/t\/0\/0\/baeldung\/~https:\/\/www.baeldung.com\/java-8-streams\">Stream API<\/a>.<\/p>\n<h2 id=\"bd-skipping-the-first-element\" data-id=\"skipping-the-first-element\">2. Skipping the First Element<\/h2>\n<div class=\"bd-anchor\" id=\"skipping-the-first-element\"><\/div>\n<p>There are various ways to skip the first element in Java when iterating through a collection. Below, we cover three major approaches: using standard loops, using the <a href=\"https:\/\/feeds.feedblitz.com\/~\/t\/0\/0\/baeldung\/~https:\/\/www.baeldung.com\/java-iterator\"><em>Iterator<\/em><\/a> interface, and utilizing the Stream API.<\/p>\n<p>Some algorithms require skipping the first element for different reasons: to process it separately or skip it entirely, for example, CSV headers. Calculating running differences between the daily income of a small business might be a good example of this approach:<\/p>\n<p><a href=\"https:\/\/feeds.feedblitz.com\/~\/t\/0\/0\/baeldung\/~https:\/\/www.baeldung.com\/wp-content\/uploads\/2023\/09\/Skipping-the-First-Element-Example.png\"><img decoding=\"async\" class=\"alignnone size-full wp-image-177548\" src=\"https:\/\/www.baeldung.com\/wp-content\/uploads\/2023\/09\/Skipping-the-First-Element-Example.png\" alt=\"\" \/><\/a><\/p>\n<p>Iterating from the second element helps us to create a simple algorithm and saves us from unnecessary and non-intuitive checks.<\/p>\n<h3 id=\"bd-1-for-loop\" data-id=\"1-for-loop\">2.1. For Loop<\/h3>\n<div class=\"bd-anchor\" id=\"1-for-loop\"><\/div>\n<p>The simplest way to skip the first element is to use a <a href=\"https:\/\/feeds.feedblitz.com\/~\/t\/0\/0\/baeldung\/~https:\/\/www.baeldung.com\/java-for-loop\"><em>for<\/em> loop<\/a> and start the counter variable from 1 instead of 0. This approach is most suitable for collections that support indexed access, like <a href=\"https:\/\/feeds.feedblitz.com\/~\/t\/0\/0\/baeldung\/~https:\/\/www.baeldung.com\/java-arraylist\"><em>ArrayList<\/em><\/a> and simple arrays:<\/p>\n<pre><code class=\"language-java\">void skippingFirstElementInListWithForLoop(List&lt;String&gt; stringList) {\r\n    for (int i = 1; i &lt; stringList.size(); i++) {\r\n        process(stringList.get(i));\r\n    }\r\n} <\/code><\/pre>\n<p><strong>The main benefit of this approach is its simplicity.<\/strong> Also, it allows us to access the first value if we would like to do so. At the same time, setting the initial value might be easily overlooked.<\/p>\n<h3 id=\"bd-2-while-loop\" data-id=\"2-while-loop\">2.2. While Loop<\/h3>\n<div class=\"bd-anchor\" id=\"2-while-loop\"><\/div>\n<p>Another way is to use a <a href=\"https:\/\/feeds.feedblitz.com\/~\/t\/0\/0\/baeldung\/~https:\/\/www.baeldung.com\/java-while-loop\"><em>while<\/em> loop<\/a> along with an <em>Iterator<\/em>. We can manually advance the iterator to skip the first element:<\/p>\n<pre><code class=\"language-java\">void skippingFirstElementInListWithWhileLoop(List&lt;String&gt; stringList) {\r\n    Iterator&lt;String&gt; iterator = stringList.iterator();\r\n    if (iterator.hasNext()) {\r\n        iterator.next();\r\n    }\r\n    while (iterator.hasNext()) {\r\n        process(iterator.next());\r\n    }\r\n}<\/code><\/pre>\n<p>One of the benefits of this method is the fact that it <a href=\"https:\/\/feeds.feedblitz.com\/~\/t\/0\/0\/baeldung\/~https:\/\/www.baeldung.com\/java-iterate-set\">works<\/a> with all the\u00a0<a href=\"https:\/\/feeds.feedblitz.com\/~\/t\/0\/0\/baeldung\/~https:\/\/www.baeldung.com\/java-iterator-vs-iterable\"><em>Iterable<\/em><\/a> collections, such as <a href=\"https:\/\/feeds.feedblitz.com\/~\/t\/0\/0\/baeldung\/~https:\/\/www.baeldung.com\/java-hashset\"><em>Set<\/em><\/a>:<\/p>\n<pre><code class=\"language-java\">void skippingFirstElementInSetWithWhileLoop(Set&lt;String&gt; stringSet) {\r\n    Iterator&lt;String&gt; iterator = stringSet.iterator();\r\n    if (iterator.hasNext()) {\r\n        iterator.next();\r\n    }\r\n    while (iterator.hasNext()) {\r\n        process(iterator.next());\r\n    }\r\n}<\/code><\/pre>\n<p><strong>An additional benefit is that we can abstract the collection to the most general class; in this case, it would be <em>Iterable <\/em>and reuse the code. <\/strong>However, as <em>Sets<\/em>, in most cases, don&#8217;t have the notion of order, it&#8217;s not clear which element we&#8217;ll skip.\u00a0On the other side, if we need the first element, we have to store it explicitly:<\/p>\n<pre><code class=\"language-java\">void skippingFirstElementInListWithWhileLoopStoringFirstElement(List&lt;String&gt; stringList) {\r\n    Iterator&lt;String&gt; iterator = stringList.iterator();\r\n    String firstElement = null;\r\n    if (iterator.hasNext()) {\r\n        firstElement = iterator.next();\r\n    }\r\n    while (iterator.hasNext()) {\r\n        process(iterator.next());\r\n        \/\/ additional logic using fistElement\r\n    }\r\n}<\/code><\/pre>\n<h3 id=\"bd-3-stream-api\" data-id=\"3-stream-api\">2.3. Stream API<\/h3>\n<div class=\"bd-anchor\" id=\"3-stream-api\"><\/div>\n<p><strong>Java 8 introduced the Stream API, which provides a more declarative way to manipulate collections.<\/strong> To skip the first element, we can use the <a href=\"https:\/\/feeds.feedblitz.com\/~\/t\/0\/0\/baeldung\/~https:\/\/www.baeldung.com\/java-stream-skip-vs-limit#skip\"><em>skip()<\/em><\/a> method:<\/p>\n<pre><code class=\"language-java\">void skippingFirstElementInListWithStreamSkip(List&lt;String&gt; stringList) {\r\n    stringList.stream().skip(1).forEach(this::process);\r\n}<\/code><\/pre>\n<p>Like the previous one, this method works on Iterable collection and is quite verbose about its intentions. We can easily use <em>Set<\/em> with this approach:<\/p>\n<pre><code class=\"language-java\">void skippingFirstElementInSetWithStreamSkip(Set&lt;String&gt; stringSet) {\r\n    stringSet.stream().skip(1).forEach(this::process);\r\n}<\/code><\/pre>\n<p>Also, we can use a <em>Map<\/em>:<\/p>\n<pre><code class=\"language-java\">void skippingFirstElementInMapWithStreamSkip(Map&lt;String, String&gt; stringMap) {\r\n    stringMap.entrySet().stream().skip(1).forEach(this::process);\r\n}<\/code><\/pre>\n<p><em>Maps<\/em>, similar to\u00a0<em>Sets<\/em>, don&#8217;t maintain the order of the elements, so please use this with caution, as the first element isn&#8217;t clearly defined in this case. However, sometimes skipping an element in a <em>Set<\/em> or in a<em> Map\u00a0<\/em>might be useful.<\/p>\n<h3 id=\"bd-4-using-sublist\" data-id=\"4-using-sublist\">2.4. Using <em>subList()<\/em><\/h3>\n<div class=\"bd-anchor\" id=\"4-using-sublist\"><\/div>\n<p>Another way to skip the first element in <em>Lists<\/em> is using the <a href=\"https:\/\/feeds.feedblitz.com\/~\/t\/0\/0\/baeldung\/~https:\/\/www.baeldung.com\/java-list-interface#9-creating-a-sublist\"><em>subList()<\/em><\/a> method. This method returns a view of the portion of the list between the specified <em>fromIndex<\/em>, inclusive, and <em>toIndex<\/em>, exclusive. When we pair this with a <em>for-each<\/em> loop, we can easily skip the first element:<\/p>\n<pre><code class=\"language-java\">void skippingFirstElementInListWithSubList(List&lt;String&gt; stringList) {\r\n    for (final String element : stringList.subList(1, stringList.size())) {\r\n        process(element);\r\n    }\r\n}<\/code><\/pre>\n<p><strong>One of the issues is that\u00a0<em>subList()<\/em> can fail on empty lists.<\/strong> Another thing is that it&#8217;s not clear, especially for people new to Java, that it doesn&#8217;t create a separate collection and provides a view of the original one. <strong>Overall, this is a highly <a href=\"https:\/\/feeds.feedblitz.com\/~\/t\/0\/0\/baeldung\/~https:\/\/www.baeldung.com\/cs\/imperative-vs-declarative-programming#imperative-paradigm\">imperative<\/a> way of iterating.<\/strong><\/p>\n<h3 id=\"bd-5-other-methods\" data-id=\"5-other-methods\">2.5. Other Methods<\/h3>\n<div class=\"bd-anchor\" id=\"5-other-methods\"><\/div>\n<p>Although there are only a handful of fundamental ways to iterate over a collection, we could combine and alter them to get more variations. <strong>As these variations aren&#8217;t substantially different, we list them here to show possible approaches and inspire experimentation.<\/strong><\/p>\n<p>We can skip the first element using a <em>for<\/em> loop with an additional <em>if<\/em> statement. It&#8217;s useful when we need to process the first element separately from the others:<\/p>\n<pre><code class=\"language-java\">void skippingFirstElementInListWithForLoopWithAdditionalCheck(List&lt;String&gt; stringList) {\r\n    for (int i = 0; i &lt; stringList.size(); i++) {\r\n        if (i == 0) {\r\n            \/\/ do something else\r\n        } else {\r\n            process(stringList.get(i));\r\n        }\r\n    }\r\n}\r\n<\/code><\/pre>\n<p>We can apply the logic we&#8217;re using in a\u00a0<em>for<\/em> loop to a\u00a0<em>while<\/em> loop and use a counter inside it:<\/p>\n<pre><code class=\"language-java\">void skippingFirstElementInListWithWhileLoopWithCounter(List&lt;String&gt; stringList) {\r\n    int counter = 0;\r\n    while (counter &lt; stringList.size()) {\r\n        if (counter != 0) {\r\n            process(stringList.get(counter));\r\n        }\r\n        ++counter;\r\n    }\r\n}<\/code><\/pre>\n<p>This approach might be helpful when we need to advance the list in different steps depending on some internal logic.<\/p>\n<p>Also, we can combine the approach with\u00a0<em>subList\u00a0<\/em>and with\u00a0<em>stream<\/em>:<\/p>\n<pre><code class=\"language-java\">void skippingFirstElementInListWithStreamSkipAndSubList(List&lt;String&gt; stringList) {\r\n    stringList.subList(1, stringList.size()).forEach(this::process);\r\n}<\/code><\/pre>\n<p><strong>Overall, our imagination can bring us to some esoteric decisions that should not be used at all:<\/strong><\/p>\n<pre><code class=\"language-java\">void skippingFirstElementInListWithReduce(List&lt;String&gt; stringList) {\r\n    stringList.stream().reduce((skip, element) -&gt; {\r\n        process(element);\r\n        return element;\r\n    });\r\n}<\/code><\/pre>\n<h2 id=\"bd-conclusion\" data-id=\"conclusion\">3. Conclusion<\/h2>\n<div class=\"bd-anchor\" id=\"conclusion\"><\/div>\n<p>While Java offers different ways to iterate a collection while skipping the first element, the primary metric in picking the right approach is the clarity of the code. <strong>Thus, we should opt for two simple and the most verbose methods, which are simple <em>for<\/em> loop or <em>stream.skip().\u00a0<\/em><\/strong>Other methods are more complex, contain more moving parts, and should be avoided if possible.<\/p>\n<p>As usual, the examples from this article are available <a href=\"https:\/\/feeds.feedblitz.com\/~\/t\/0\/0\/baeldung\/~https:\/\/github.com\/eugenp\/tutorials\/tree\/master\/core-java-modules\/core-java-collections-5\">over on GitHub<\/a>.<\/p>\n<div id=\"gtx-trans\" style=\"position: absolute;left: 216px;top: 3900.33px\">\n<div class=\"gtx-trans-icon\"><\/div>\n<\/div>\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\/797161523\/0\/baeldung\"><\/p>\n<div style=\"clear:both;padding-top:0.2em;\"><a title=\"Like on Facebook\" href=\"https:\/\/feeds.feedblitz.com\/_\/28\/797161523\/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\/797161523\/baeldung,https%3A%2F%2Fwww.baeldung.com%2Fwp-content%2Fuploads%2F2021%2F09%2FJava-8-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\/797161523\/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\/797161523\/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\/797161523\/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-skip-first-iteration#respond\"><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-skip-first-iteration\/feed\"><img decoding=\"async\" height=\"20\" style=\"border:0;margin:0;padding:0;\" src=\"https:\/\/assets.feedblitz.com\/i\/commentsrss20.png\"><\/a>&#160;<\/div>\n\n<h2><b>Commercials Cooperation Advertisements:<\/b><\/h2>\r\n<p><br>(1) IT Teacher IT Freelance<br> <\/p>\r\n<a href=https:\/\/itteacheritfreelance.hk\/wordpress><img src=http:\/\/gamefootballmobileanimeiphone.com\/wp-content\/uploads\/2023\/09\/ITTeacherITFreelance-Website.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\/><\/a><p><a href=https:\/\/itteacheritfreelance.hk\/wordpress\/index.php\/findteacher>\u7acb\u523b\u8a3b\u518a\u53ca\u5831\u540d\u96fb\u8166\u88dc\u7fd2\u8ab2\u7a0b\u5427! <\/a><br>\r\n\r\n\u7535\u5b50\u8ba1\u7b97\u673a -\u6559\u80b2 -IT \u96fb\u8166\u73ed\u201d ( IT\u96fb\u8166\u88dc\u7fd2 ) \u63d0\u4f9b\u4e00\u500b\u65b9\u4fbf\u7684\u7535\u5b50\u8ba1\u7b97\u673a \u6559\u80b2\u5e73\u53f0, \u70ba\u5927\u5bb6\u914d\u5c0d\u4fe1\u606f\u6280\u672f, \u96fb\u8166 \u8001\u5e2b, IT freelance \u548c programming expert. \u8b93\u5927\u5bb6\u65b9\u4fbf\u5730\u5c31\u80fd\u627e\u5230\u5408\u9069\u7684\u96fb\u8166\u88dc\u7fd2, \u96fb\u8166\u73ed, \u5bb6\u6559, \u79c1\u4eba\u8001\u5e2b.  <br>\r\n\r\nWe are a education and information platform which you can find a IT private tutorial teacher or freelance. <br>\r\n\r\nAlso we provide different information about information technology, Computer, programming, mobile, Android, apple, game, movie, anime, animation\u2026 \r\n<\/p>\n<p><br>(2) ITSec<br> <\/p><a href=https:\/\/itsec.vip><img src=http:\/\/gamefootballmobileanimeiphone.com\/wp-content\/uploads\/2023\/09\/ITSec-Main-Promotion-Image.png alt= https:\/\/itsec.vip\/\r\nSecure Your Computers from Cyber Threats and mitigate risks with professional services to defend Hackers.  \r\nITSec provide IT Security and Compliance Services, including IT Compliance Services, Risk Assessment, IT Audit, Security Assessment and Audit, ISO 27001 Consulting and Certification, GDPR Compliance Services, Privacy Impact Assessment (PIA), Penetration test, Ethical Hacking, Vulnerabilities scan, IT Consulting, Data Privacy Consulting, Data Protection Services, Information Security Consulting, Cyber Security Consulting, Network Security Audit, Security Awareness Training.\/><\/a> \r\n<br><br> \r\n<p><a href=https:\/\/itsec.vip>www.ITSec.vip<\/a> <br> <br> \r\n<p><a href=https:\/\/sraa.com.hk>www.Sraa.com.hk<\/a> <br> <br> \r\n<p><a href=https:\/\/itsec.hk>www.ITSec.hk<\/a> <br> <br> \r\n<p><a href=https:\/\/penetrationtest.hk>www.Penetrationtest.hk<\/a> <br> <br> \r\n<p><a href=https:\/\/itseceu.uk>www.ITSeceu.uk<\/a> <br> <br> \r\nSecure Your Computers from Cyber Threats and mitigate risks with professional services to defend Hackers. <br><br>\r\nITSec provide IT Security and Compliance Services, including IT Compliance Services, Risk Assessment, IT Audit, Security Assessment and Audit, ISO 27001 Consulting and Certification, GDPR Compliance Services, Privacy Impact Assessment (PIA), Penetration test, Ethical Hacking, Vulnerabilities scan, IT Consulting, Data Privacy Consulting, Data Protection Services, Information Security Consulting, Cyber Security Consulting, Network Security Audit, Security Awareness Training. \r\n<br><br>Contact us right away. <br><br>Email (Prefer using email to contact us): <br>SalesExecutive@ITSec.vip<\/p>","protected":false},"excerpt":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/www.baeldung.com\/wp-content\/uploads\/2021\/09\/Java-8-Featured-1024x536.png\" class=\"webfeedsFeaturedVisual wp-post-image\" alt=\"\"><\/p>\n<p>Explore various methods to skip the first element using loops and the Stream API.<\/p>\n<div><a title=\"Like on Facebook\" href=\"https:\/\/feeds.feedblitz.com\/_\/28\/797161523\/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\/797161523\/baeldung,https%3A%2F%2Fwww.baeldung.com%2Fwp-content%2Fuploads%2F2021%2F09%2FJava-8-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\/797161523\/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\/797161523\/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\/797161523\/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-skip-first-iteration#respond\"><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-skip-first-iteration\/feed\"><img decoding=\"async\" height=\"20\" src=\"https:\/\/assets.feedblitz.com\/i\/commentsrss20.png\"><\/a>\u00a0<\/div>\n","protected":false},"author":291,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"site-container-style":"default","site-container-layout":"default","site-sidebar-layout":"default","disable-article-header":"default","disable-site-header":"default","disable-site-footer":"default","disable-content-area-spacing":"default","footnotes":""},"categories":[22],"tags":[61,122,127,129,124,128,125,132,131,133,126,130,123,66,94,88,97,56,64,65,60,112,40,75,95,104,33,120,105,101,98,115,30,29,41,86,70,69,68,72,71,26,118,108,87,46,55,48,52,54,51,50,83,62,58,57,2859,109,35,59,63,85,79,82,96,80,27,81,114,44,42,43,45,38,39,110,117,100,111,116,73,89,90,92,91,93,84,78,37,102,34,36,77,67,74,99,113,119,28,121,32,47,49,53,103,31,76],"class_list":["post-7236","post","type-post","status-publish","format-standard","hentry","category-mobile","tag-airpods","tag-anime","tag-anime-characters","tag-anime-cosplay","tag-anime-edits","tag-anime-merchandise","tag-anime-movies","tag-anime-news","tag-anime-recommendations","tag-anime-reviews","tag-anime-series","tag-anime-streaming","tag-animes","tag-app-store","tag-app-store-samsung","tag-appgallery","tag-appgallery-oneplus","tag-apple","tag-apple-music","tag-apple-tv","tag-apple-watch","tag-bbc-sport","tag-best-mobile-games","tag-bixby","tag-bixby-xiaomi","tag-champions-league","tag-cyberpunk","tag-cyberpunk-2077","tag-fantasy-football","tag-fifa","tag-football","tag-formula-1","tag-fortnite","tag-free-fire","tag-free-mobile-games","tag-freebuds-pro","tag-galaxy-a52","tag-galaxy-note-20","tag-galaxy-s21","tag-galaxy-watch-4","tag-galaxy-z-fold-3","tag-game","tag-games","tag-golf","tag-harmonyos","tag-how-to-backup-iphone","tag-how-to-factory-reset-iphone","tag-how-to-reset-iphone","tag-how-to-restore-iphone","tag-how-to-unlock-iphone","tag-how-to-unlock-iphone-5","tag-how-to-unlock-iphone-6","tag-huawei","tag-ios","tag-ipad","tag-iphone","tag-java-iterators","tag-live-soccer","tag-lol","tag-macbook","tag-macos","tag-mate-40-pro","tag-mi-11-lite","tag-mi-home-security-camera-basic-1080p","tag-mi-home-security-camera-basic-1080p-huawei","tag-mi-smart-band-6","tag-minecraft","tag-miui","tag-mlb-scores","tag-mobile-game-design","tag-mobile-game-development","tag-mobile-game-marketing","tag-mobile-game-monetization","tag-mobile-games","tag-mobile-gaming","tag-nba-scores","tag-nba-standings","tag-nfl","tag-nfl-scores","tag-nhl-scores","tag-one-ui","tag-oneplus","tag-oneplus-9-pro","tag-oneplus-buds-pro","tag-oneplus-nord-ce-5g","tag-oxygenos","tag-p40-pro-plus","tag-poco-x3-pro","tag-pokemon","tag-premier-league","tag-pubg","tag-pubg-mobile","tag-redmi-note-10-pro","tag-samsung","tag-samsung-pay","tag-soccer","tag-sports","tag-steam","tag-steeam","tag-top-10-anime","tag-valorant","tag-when-do-the-iphone-7-come-out","tag-when-does-the-iphone-7-come-out","tag-when-is-the-iphone-7-coming-out","tag-world-cup","tag-xbox-series-x","tag-xiaomi"],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/gamefootballmobileanimeiphone.com\/index.php\/wp-json\/wp\/v2\/posts\/7236","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/gamefootballmobileanimeiphone.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/gamefootballmobileanimeiphone.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/gamefootballmobileanimeiphone.com\/index.php\/wp-json\/wp\/v2\/users\/291"}],"replies":[{"embeddable":true,"href":"https:\/\/gamefootballmobileanimeiphone.com\/index.php\/wp-json\/wp\/v2\/comments?post=7236"}],"version-history":[{"count":2,"href":"https:\/\/gamefootballmobileanimeiphone.com\/index.php\/wp-json\/wp\/v2\/posts\/7236\/revisions"}],"predecessor-version":[{"id":8646,"href":"https:\/\/gamefootballmobileanimeiphone.com\/index.php\/wp-json\/wp\/v2\/posts\/7236\/revisions\/8646"}],"wp:attachment":[{"href":"https:\/\/gamefootballmobileanimeiphone.com\/index.php\/wp-json\/wp\/v2\/media?parent=7236"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/gamefootballmobileanimeiphone.com\/index.php\/wp-json\/wp\/v2\/categories?post=7236"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/gamefootballmobileanimeiphone.com\/index.php\/wp-json\/wp\/v2\/tags?post=7236"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}