{"id":122,"date":"2025-02-21T04:41:27","date_gmt":"2025-02-21T04:41:27","guid":{"rendered":"https:\/\/techkubo.com\/java\/?p=122"},"modified":"2025-06-07T20:58:28","modified_gmt":"2025-06-07T20:58:28","slug":"java-break-and-continue","status":"publish","type":"post","link":"https:\/\/techkubo.com\/java\/java-break-and-continue\/","title":{"rendered":"Java Break and Continue"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Java Break<\/h2>\n\n\n\n<p>The <code>break<\/code> statement is super useful when you need to exit a loop early or skip over some unnecessary steps. You&#8217;ve probably seen it in switch statements before, but it works wonders in loops too.<\/p>\n\n\n\n<p>Here&#8217;s an example that stops the loop when the variable <code>counter<\/code> hits 4:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;htmlmixed&quot;,&quot;mime&quot;:&quot;text\/html&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:false,&quot;styleActiveLine&quot;:false,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;JAVA&quot;,&quot;language&quot;:&quot;HTML&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;html&quot;}\">for (int counter = 0; counter &lt; 10; counter++) {\n  if (counter == 4) {\n    break;\n  }\n  System.out.println(&quot;Counter: &quot; + counter);\n}<\/pre><\/div>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Java Continue<\/h2>\n\n\n\n<p>The <code>continue<\/code> statement is great for skipping the current iteration of a loop and moving straight to the next one. This can be handy when you want to bypass certain conditions.<\/p>\n\n\n\n<p>For example, this code skips printing the value 4:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;htmlmixed&quot;,&quot;mime&quot;:&quot;text\/html&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:false,&quot;styleActiveLine&quot;:false,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;JAVA&quot;,&quot;language&quot;:&quot;HTML&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;html&quot;}\">for (int counter = 0; counter &lt; 10; counter++) {\n  if (counter == 4) {\n    continue;\n  }\n  System.out.println(&quot;Counter: &quot; + counter);\n}<\/pre><\/div>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Break and Continue in While Loops<\/h2>\n\n\n\n<p>You can use <code>break<\/code> and <code>continue<\/code> in <code>while<\/code> loops as well. Here are some examples:<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Break Example in a While Loop<\/h4>\n\n\n\n<p>This loop stops when the variable <code>index<\/code> reaches 4:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;htmlmixed&quot;,&quot;mime&quot;:&quot;text\/html&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:false,&quot;styleActiveLine&quot;:false,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;JAVA&quot;,&quot;language&quot;:&quot;HTML&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;html&quot;}\">int index = 0;\nwhile (index &lt; 10) {\n  System.out.println(&quot;Index: &quot; + index);\n  index++;\n  if (index == 4) {\n    break;\n  }\n}<\/pre><\/div>\n\n\n\n<p><\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Continue Example in a While Loop<\/h4>\n\n\n\n<p>This loop skips the iteration when <code>index<\/code> is 4 and continues with the next one:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;htmlmixed&quot;,&quot;mime&quot;:&quot;text\/html&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:false,&quot;styleActiveLine&quot;:false,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;JAVA&quot;,&quot;language&quot;:&quot;HTML&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;html&quot;}\">int index = 0;\nwhile (index &lt; 10) {\n  if (index == 4) {\n    index++;\n    continue;\n  }\n  System.out.println(&quot;Index: &quot; + index);\n  index++;\n}<\/pre><\/div>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Extra Tidbits<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Nested Loops<\/strong>: You can use <code>break<\/code> to get out of nested loops. If you need to exit multiple loops at once, labeled loops can be handy.<\/li>\n\n\n\n<li><strong>Better Control<\/strong>: Combining <code>break<\/code> and <code>continue<\/code> with <code>if-else<\/code> statements gives you more control over your loops.<\/li>\n\n\n\n<li><strong>Efficiency<\/strong>: Using these statements wisely can help optimize loop performance by giving you finer control over when to stop or skip iterations.<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Java Break The break statement is super useful when you need to exit a loop early or skip over some [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[1],"tags":[],"class_list":["post-122","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Java Break and Continue - Java Tutorial<\/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:\/\/techkubo.com\/java\/java-break-and-continue\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Java Break and Continue - Java Tutorial\" \/>\n<meta property=\"og:description\" content=\"Java Break The break statement is super useful when you need to exit a loop early or skip over some [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/techkubo.com\/java\/java-break-and-continue\/\" \/>\n<meta property=\"og:site_name\" content=\"Java Tutorial\" \/>\n<meta property=\"article:published_time\" content=\"2025-02-21T04:41:27+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-07T20:58:28+00:00\" \/>\n<meta name=\"author\" content=\"Manong\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Manong\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/techkubo.com\/java\/java-break-and-continue\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/techkubo.com\/java\/java-break-and-continue\/\"},\"author\":{\"name\":\"Manong\",\"@id\":\"https:\/\/techkubo.com\/java\/#\/schema\/person\/b4fa2f01fa4ff2a4e98276ce47115965\"},\"headline\":\"Java Break and Continue\",\"datePublished\":\"2025-02-21T04:41:27+00:00\",\"dateModified\":\"2025-06-07T20:58:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/techkubo.com\/java\/java-break-and-continue\/\"},\"wordCount\":205,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/techkubo.com\/java\/#organization\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/techkubo.com\/java\/java-break-and-continue\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/techkubo.com\/java\/java-break-and-continue\/\",\"url\":\"https:\/\/techkubo.com\/java\/java-break-and-continue\/\",\"name\":\"Java Break and Continue - Java Tutorial\",\"isPartOf\":{\"@id\":\"https:\/\/techkubo.com\/java\/#website\"},\"datePublished\":\"2025-02-21T04:41:27+00:00\",\"dateModified\":\"2025-06-07T20:58:28+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/techkubo.com\/java\/java-break-and-continue\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/techkubo.com\/java\/java-break-and-continue\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/techkubo.com\/java\/java-break-and-continue\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/techkubo.com\/java\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Java Break and Continue\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/techkubo.com\/java\/#website\",\"url\":\"https:\/\/techkubo.com\/java\/\",\"name\":\"Java Tutorial\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/techkubo.com\/java\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/techkubo.com\/java\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/techkubo.com\/java\/#organization\",\"name\":\"Java Tutorial\",\"url\":\"https:\/\/techkubo.com\/java\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/techkubo.com\/java\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/techkubo.com\/java\/wp-content\/uploads\/sites\/11\/2025\/04\/cropped-TechKubo-Logo-PNG.png\",\"contentUrl\":\"https:\/\/techkubo.com\/java\/wp-content\/uploads\/sites\/11\/2025\/04\/cropped-TechKubo-Logo-PNG.png\",\"width\":300,\"height\":220,\"caption\":\"Java Tutorial\"},\"image\":{\"@id\":\"https:\/\/techkubo.com\/java\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/techkubo.com\/java\/#\/schema\/person\/b4fa2f01fa4ff2a4e98276ce47115965\",\"name\":\"Manong\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/techkubo.com\/java\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/21a7455736c21887b8fefe0935012d65?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/21a7455736c21887b8fefe0935012d65?s=96&d=mm&r=g\",\"caption\":\"Manong\"},\"sameAs\":[\"https:\/\/techkubo.com\"],\"url\":\"https:\/\/techkubo.com\/java\/author\/manong\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Java Break and Continue - Java Tutorial","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:\/\/techkubo.com\/java\/java-break-and-continue\/","og_locale":"en_US","og_type":"article","og_title":"Java Break and Continue - Java Tutorial","og_description":"Java Break The break statement is super useful when you need to exit a loop early or skip over some [&hellip;]","og_url":"https:\/\/techkubo.com\/java\/java-break-and-continue\/","og_site_name":"Java Tutorial","article_published_time":"2025-02-21T04:41:27+00:00","article_modified_time":"2025-06-07T20:58:28+00:00","author":"Manong","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Manong","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/techkubo.com\/java\/java-break-and-continue\/#article","isPartOf":{"@id":"https:\/\/techkubo.com\/java\/java-break-and-continue\/"},"author":{"name":"Manong","@id":"https:\/\/techkubo.com\/java\/#\/schema\/person\/b4fa2f01fa4ff2a4e98276ce47115965"},"headline":"Java Break and Continue","datePublished":"2025-02-21T04:41:27+00:00","dateModified":"2025-06-07T20:58:28+00:00","mainEntityOfPage":{"@id":"https:\/\/techkubo.com\/java\/java-break-and-continue\/"},"wordCount":205,"commentCount":0,"publisher":{"@id":"https:\/\/techkubo.com\/java\/#organization"},"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/techkubo.com\/java\/java-break-and-continue\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/techkubo.com\/java\/java-break-and-continue\/","url":"https:\/\/techkubo.com\/java\/java-break-and-continue\/","name":"Java Break and Continue - Java Tutorial","isPartOf":{"@id":"https:\/\/techkubo.com\/java\/#website"},"datePublished":"2025-02-21T04:41:27+00:00","dateModified":"2025-06-07T20:58:28+00:00","breadcrumb":{"@id":"https:\/\/techkubo.com\/java\/java-break-and-continue\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/techkubo.com\/java\/java-break-and-continue\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/techkubo.com\/java\/java-break-and-continue\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/techkubo.com\/java\/"},{"@type":"ListItem","position":2,"name":"Java Break and Continue"}]},{"@type":"WebSite","@id":"https:\/\/techkubo.com\/java\/#website","url":"https:\/\/techkubo.com\/java\/","name":"Java Tutorial","description":"","publisher":{"@id":"https:\/\/techkubo.com\/java\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/techkubo.com\/java\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/techkubo.com\/java\/#organization","name":"Java Tutorial","url":"https:\/\/techkubo.com\/java\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/techkubo.com\/java\/#\/schema\/logo\/image\/","url":"https:\/\/techkubo.com\/java\/wp-content\/uploads\/sites\/11\/2025\/04\/cropped-TechKubo-Logo-PNG.png","contentUrl":"https:\/\/techkubo.com\/java\/wp-content\/uploads\/sites\/11\/2025\/04\/cropped-TechKubo-Logo-PNG.png","width":300,"height":220,"caption":"Java Tutorial"},"image":{"@id":"https:\/\/techkubo.com\/java\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/techkubo.com\/java\/#\/schema\/person\/b4fa2f01fa4ff2a4e98276ce47115965","name":"Manong","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/techkubo.com\/java\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/21a7455736c21887b8fefe0935012d65?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/21a7455736c21887b8fefe0935012d65?s=96&d=mm&r=g","caption":"Manong"},"sameAs":["https:\/\/techkubo.com"],"url":"https:\/\/techkubo.com\/java\/author\/manong\/"}]}},"_links":{"self":[{"href":"https:\/\/techkubo.com\/java\/wp-json\/wp\/v2\/posts\/122"}],"collection":[{"href":"https:\/\/techkubo.com\/java\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/techkubo.com\/java\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/techkubo.com\/java\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/techkubo.com\/java\/wp-json\/wp\/v2\/comments?post=122"}],"version-history":[{"count":2,"href":"https:\/\/techkubo.com\/java\/wp-json\/wp\/v2\/posts\/122\/revisions"}],"predecessor-version":[{"id":189,"href":"https:\/\/techkubo.com\/java\/wp-json\/wp\/v2\/posts\/122\/revisions\/189"}],"wp:attachment":[{"href":"https:\/\/techkubo.com\/java\/wp-json\/wp\/v2\/media?parent=122"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/techkubo.com\/java\/wp-json\/wp\/v2\/categories?post=122"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/techkubo.com\/java\/wp-json\/wp\/v2\/tags?post=122"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}